X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-const.c;h=1e4a77b25399c44bcfc4e92abba5992611bcb1ee;hb=1fe7f55b1efc5deefb20815a03b56c8ef0f6dc53;hp=f8d0ae0f60a6f7466326cf24042b3db639e9fb2a;hpb=85a33135890965218010b79c89e4d3f4905727e3;p=ccan 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 f8d0ae0f..1e4a77b2 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) { } @@ -28,17 +31,18 @@ static void my_callback(const char *p) { } -static void my_callback_pre(int x, const char *p) +static void my_callback_pre(int x, /*const*/ char *p) { } -static void my_callback_post(const char *p, int x) +static void my_callback_post(/*const*/ char *p, int x) { } int main(int argc, char *argv[]) { register_callback(my_callback, "hello world"); + register_callback_def(my_callback, "hello world"); register_callback_pre(my_callback_pre, "hello world"); register_callback_post(my_callback_post, "hello world"); return 0;