]> git.ozlabs.org Git - ccan/blobdiff - ccan/compiler/test/run-is_compile_constant.c
compiler, talloc, tap, tdb2: use #if instead of #ifdef.
[ccan] / ccan / compiler / test / run-is_compile_constant.c
index 0a15280b61635db92b782aa1eea01f7ed91b2aa3..a66f2e13e6c9c3749ae9357cb800517377d5863c 100644 (file)
@@ -6,7 +6,7 @@ int main(int argc, char *argv[])
        plan_tests(2);
 
        ok1(!IS_COMPILE_CONSTANT(argc));
-#ifdef HAVE_BUILTIN_CONSTANT_P
+#if HAVE_BUILTIN_CONSTANT_P
        ok1(IS_COMPILE_CONSTANT(7));
 #else
        pass("If !HAVE_BUILTIN_CONSTANT_P, IS_COMPILE_CONSTANT always false");