Commit 84b35c62f0ed3b136d4284e6a68d986108952bf2

Thomas de Grivel 2023-11-03T14:11:18

#undef true false

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/libc3/types.h b/libc3/types.h
index 541d3d6..ad7efe3 100644
--- a/libc3/types.h
+++ b/libc3/types.h
@@ -26,6 +26,12 @@
 #ifdef bool
 # undef bool
 #endif
+#ifdef false
+# undef false
+#endif
+#ifdef true
+# undef true
+#endif
 
 /* Basic integer types. */
 typedef char          s8;