From 9593fc545950782ed75f12f53238b07885559b2b Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 9 Jul 2018 22:28:25 -0700 Subject: remove ccan for now --- ccan/compiler/test/compile_fail-printf.c | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 ccan/compiler/test/compile_fail-printf.c (limited to 'ccan/compiler/test/compile_fail-printf.c') diff --git a/ccan/compiler/test/compile_fail-printf.c b/ccan/compiler/test/compile_fail-printf.c deleted file mode 100644 index 7664f65..0000000 --- a/ccan/compiler/test/compile_fail-printf.c +++ /dev/null @@ -1,24 +0,0 @@ -#include - -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; -} -- cgit v1.2.3