diff bool.h @ 209:256f51fde64c default tip

Use the correct feature test macro for stdbool.h; noticed by mrg.
author David A. Holland
date Sat, 22 May 2021 00:04:05 -0400
parents 4c3375895c6e
children
line wrap: on
line diff
--- a/bool.h	Mon Jan 21 21:41:38 2019 -0500
+++ b/bool.h	Sat May 22 00:04:05 2021 -0400
@@ -30,7 +30,7 @@
 #ifndef BOOL_H
 #define BOOL_H
 
-#if __STDC__ > 199901
+#if __STDC_VERSION__ >= 199901
 #include <stdbool.h>
 #else
 typedef int bool;