You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
365 B
24 lines
365 B
#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;
|
|
}
|
|
|