summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorasmodai <asmodai@FreeBSD.org>2000-11-29 14:41:00 +0000
committerasmodai <asmodai@FreeBSD.org>2000-11-29 14:41:00 +0000
commit54bcb032de4aca8465f83bb5c1c1a43fce1bd9f5 (patch)
treee29e228e763160f4335bb11979826ad6cb7a0de9 /include
parent4e0f3015c14ee21924046cba87ae8c88a72ae587 (diff)
downloadFreeBSD-src-54bcb032de4aca8465f83bb5c1c1a43fce1bd9f5.zip
FreeBSD-src-54bcb032de4aca8465f83bb5c1c1a43fce1bd9f5.tar.gz
Fix stdbool.h to actually work as advertised.
PR: 22936 Submitted by: Donald J. Maddox <Donald.J.Maddox@cae88-102-101.sc.rr.com> bde
Diffstat (limited to 'include')
-rw-r--r--include/stdbool.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/include/stdbool.h b/include/stdbool.h
index 5317aea..474ac9c 100644
--- a/include/stdbool.h
+++ b/include/stdbool.h
@@ -31,22 +31,14 @@
#ifndef _STDBOOL_H_
#define _STDBOOL_H_
-/* `_Bool' type must promote to `int' or `unsigned int' */
-typedef enum {
- false = 0,
- true = 1
-} _Bool;
+#define __bool_true_false_are_defined 1
/* And those constants must also be available as macros */
-#define false false
-#define true true
+#define false 0
+#define true 1
/* User visible type `bool' is provided as a macro which may be redefined */
#define bool _Bool
-
-/* Inform that everything is fine */
-#define __bool_true_false_are_defined 1
-
#if __STDC_VERSION__ < 199901L
typedef int _Bool; /* not built into pre-C99 compilers */
#endif
OpenPOWER on IntegriCloud