mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-24 08:14:19 +01:00
This gives us a slew of -Wextra fixes (not all of them though!) but we're actually doing it for the monotonic version of timers. This breaks some stuff, so we fix that up next. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
25 lines
365 B
C
25 lines
365 B
C
#include <ccan/compiler/compiler.h>
|
|
|
|
static void PRINTF_FMT(2,3) my_printf(int x, const char *fmt, ...)
|
|
{
|
|
(void)x;
|
|
(void)fmt;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
unsigned int i = 0;
|
|
|
|
my_printf(1, "Not a pointer "
|
|
#ifdef FAIL
|
|
"%p",
|
|
#if !HAVE_ATTRIBUTE_PRINTF
|
|
#error "Unfortunately we don't fail if !HAVE_ATTRIBUTE_PRINTF."
|
|
#endif
|
|
#else
|
|
"%i",
|
|
#endif
|
|
i);
|
|
return 0;
|
|
}
|