]> git.ozlabs.org Git - ccan/blobdiff - check_type/test/compile_fail-check_type_unsigned.c
Move modules to ccan/ tools to tools/
[ccan] / check_type / test / compile_fail-check_type_unsigned.c
diff --git a/check_type/test/compile_fail-check_type_unsigned.c b/check_type/test/compile_fail-check_type_unsigned.c
deleted file mode 100644 (file)
index 6b18acb..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "check_type/check_type.h"
-
-int main(int argc, char *argv[])
-{
-#ifdef FAIL
-#if HAVE_TYPEOF
-       check_type(argc, unsigned int);
-#else
-       /* This doesn't work without typeof, so just fail */
-#error "Fail without typeof"
-#endif
-#endif
-       return 0;
-}