]> git.ozlabs.org Git - ccan/blobdiff - ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c
typesafe_cb: expose _exact and _def variants.
[ccan] / ccan / typesafe_cb / test / compile_ok-typesafe_cb-const.c
index 5017928a39e70aebd476e74e7dac0b45323bde6d..1e4a77b25399c44bcfc4e92abba5992611bcb1ee 100644 (file)
@@ -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)
 {
 }
@@ -39,6 +42,7 @@ 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;