s3:lib/events: make use of samba_tevent_set_debug()
[Samba/gebeck_regimport.git] / lib / ccan / cast / test / compile_ok-cast_void.c
blobc649d283b3b12530ed58713ea3c63974c79d28f8
1 #include <ccan/cast/cast.h>
3 static void *remove_void(const void *p)
5 return cast_const(void *, p);
8 int main(void)
10 void *p = remove_void("foo");
11 return !p;