summaryrefslogtreecommitdiffstats
path: root/ccan/compiler/test/compile_fail-printf.c
blob: 7664f65d4803a6426781e84493476ce72773c049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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;
}
OpenPOWER on IntegriCloud