X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-undefined.c;h=bb71042c3b14914c41a0bbe4ea648fd159812c2c;hp=aa50bad6a929a38f10daa11d9a647b8f47a34c10;hb=61f58ff94e35c9b8ac5488554e2554bc5c9888b3;hpb=b0fa019adb998c20a8740f5696b61ae87d2a77a6 diff --git a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-undefined.c b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-undefined.c index aa50bad6..bb71042c 100644 --- a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-undefined.c +++ b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-undefined.c @@ -5,6 +5,8 @@ static void _register_callback(void (*cb)(void *arg), void *arg) { + (void)cb; + (void)arg; } #define register_callback(cb, arg) \ @@ -12,6 +14,8 @@ static void _register_callback(void (*cb)(void *arg), void *arg) static void _register_callback_pre(void (*cb)(int x, void *arg), void *arg) { + (void)cb; + (void)arg; } #define register_callback_pre(cb, arg) \ @@ -19,6 +23,8 @@ static void _register_callback_pre(void (*cb)(int x, void *arg), void *arg) static void _register_callback_post(void (*cb)(void *arg, int x), void *arg) { + (void)cb; + (void)arg; } #define register_callback_post(cb, arg) \ @@ -28,17 +34,22 @@ struct undefined; static void my_callback(struct undefined *undef) { + (void)undef; } static void my_callback_pre(int x, struct undefined *undef) { + (void)x; + (void)undef; } static void my_callback_post(struct undefined *undef, int x) { + (void)undef; + (void)x; } -int main(int argc, char *argv[]) +int main(void) { struct undefined *handle = NULL;