summaryrefslogtreecommitdiffstats
path: root/lib/ccan/compiler/test/compile_fail-printf.c
blob: 8f34ae5a1255b25f89aa0ae3424c9c47ef750cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <ccan/compiler/compiler.h>

static void PRINTF_FMT(2,3) my_printf(int x, const char *fmt, ...)
{
}

int main(int argc, char *argv[])
{
	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;
}