diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2017-10-05 13:42:19 -0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2017-10-08 10:25:36 -0800 |
commit | bf8c59996b3fb2a940827d12438a9e18eca6db4c (patch) | |
tree | 86366ab663beeeeec3554ce3407159aaacd70714 /ccan/compiler/test/compile_fail-printf.c | |
parent | 85ee972555948337bb1a58f0702a4da95db6758f (diff) |
Update for new superblock options; makefile improvements
Diffstat (limited to 'ccan/compiler/test/compile_fail-printf.c')
-rw-r--r-- | ccan/compiler/test/compile_fail-printf.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ccan/compiler/test/compile_fail-printf.c b/ccan/compiler/test/compile_fail-printf.c deleted file mode 100644 index 8f34ae5a..00000000 --- a/ccan/compiler/test/compile_fail-printf.c +++ /dev/null @@ -1,22 +0,0 @@ -#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; -} |