summaryrefslogtreecommitdiff
path: root/libobj/tests/test_obj.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-05 21:41:15 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-05 21:41:15 -0600
commit5d72b64e90cd5252c2c25b6c6eb1e9cf5cc739f9 (patch)
tree3a29d91c3dfb3c7c580c87184a15b5bd54e55172 /libobj/tests/test_obj.c
parent7fe3755f3a3dc11f1371b2b104fe3cf357da2310 (diff)
parent9758d91ea795448689ec401570bf556b8107177c (diff)
Merge branch 'lukeshu/net-flash'
Diffstat (limited to 'libobj/tests/test_obj.c')
-rw-r--r--libobj/tests/test_obj.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libobj/tests/test_obj.c b/libobj/tests/test_obj.c
index 89fff68..d6861dc 100644
--- a/libobj/tests/test_obj.c
+++ b/libobj/tests/test_obj.c
@@ -17,18 +17,18 @@
LO_FUNC(int, frob1, int) \
/** Function that returns nothing. */ \
LO_FUNC(void, frob0)
-LO_INTERFACE(frobber)
+LO_INTERFACE(frobber);
/* `struct myclass` header ****************************************************/
struct myclass {
int a;
};
-LO_IMPLEMENTATION_H(frobber, struct myclass, myclass)
+LO_IMPLEMENTATION_H(frobber, struct myclass, myclass);
/* `struct myclass` implementation ********************************************/
-LO_IMPLEMENTATION_C(frobber, struct myclass, myclass, static)
+LO_IMPLEMENTATION_C(frobber, struct myclass, myclass, static);
static int myclass_frob(struct myclass *self) {
test_assert(self);