X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-vars.c;fp=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-vars.c;h=1cb1057d823c954b25e9206bdc7b28781e293d3e;hp=9537a3ea519b7e50cedce554aed32673953f7920;hb=ad2ce76c10f808283ea7cf25cd8e76a15710c4f3;hpb=5877402640cff05f779b23a730e4cc62d729113f diff --git a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.c b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.c index 9537a3ea..1cb1057d 100644 --- a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.c +++ b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.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,14 +34,19 @@ 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)x; + (void)undef; } int main(void)