X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-const.c;h=7c2d62ef231b599909c4dda29d61b14488ed97a6;hp=5017928a39e70aebd476e74e7dac0b45323bde6d;hb=148c09482cd343f1c02526908a2612d327412697;hpb=67a035869c6f3512ba943ae197b407f182a4506d diff --git a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c index 5017928a..7c2d62ef 100644 --- a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c +++ b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c @@ -10,6 +10,9 @@ static void _register_callback(void (*cb)(void *arg), void *arg) #define register_callback(cb, arg) \ _register_callback(typesafe_cb(void, (cb), (arg)), (arg)) +#define register_callback_def(cb, arg) \ + _register_callback(typesafe_cb_def(void, (cb), (arg)), (arg)) + static void _register_callback_pre(void (*cb)(int x, void *arg), void *arg) { } @@ -38,8 +41,10 @@ static void my_callback_post(/*const*/ char *p, int x) int main(int argc, char *argv[]) { - register_callback(my_callback, "hello world"); - register_callback_pre(my_callback_pre, "hello world"); - register_callback_post(my_callback_post, "hello world"); + char p[] = "hello world"; + register_callback(my_callback, p); + register_callback_def(my_callback, p); + register_callback_pre(my_callback_pre, p); + register_callback_post(my_callback_post, p); return 0; }