summaryrefslogtreecommitdiff
path: root/tests/test-stdbool.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-stdbool.c')
-rw-r--r--tests/test-stdbool.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/test-stdbool.c b/tests/test-stdbool.c
index 329f5d5378..73c871e869 100644
--- a/tests/test-stdbool.c
+++ b/tests/test-stdbool.c
@@ -1,4 +1,4 @@
-/* Test of <stdbool.h> substitute.
+/* Test bool.
Copyright (C) 2002-2007, 2009-2022 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
@@ -33,7 +33,9 @@
#include <config.h>
-#include <stdbool.h>
+#ifdef TEST_STDBOOL_H
+# include <stdbool.h>
+#endif
#if false
"error: false is not 0"
@@ -44,7 +46,7 @@
/* Several tests cannot be guaranteed with gnulib's <stdbool.h>, at
least, not for all compilers and compiler options. */
-#if (202311 <= __STDC_VERSION__ || defined __cplusplus \
+#if (HAVE_C_BOOL || defined __cplusplus \
|| HAVE_STDBOOL_H || 3 <= __GNUC__ || 4 <= __clang_major__)
# define WORKING_BOOL 1
#else