aboutsummaryrefslogtreecommitdiffstats
path: root/src/system.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-06 19:17:37 +0000
committerJim Meyering <jim@meyering.net>2003-06-06 19:17:37 +0000
commitda5cbe5ef8c0425de671331d3300d3a587b52573 (patch)
tree09db8ec547af2de3d78d18ff7d48c4c1e10dae07 /src/system.h
parentInclude <stdbool.h> unconditionally. (diff)
downloadcoreutils-da5cbe5ef8c0425de671331d3300d3a587b52573.tar.gz
coreutils-da5cbe5ef8c0425de671331d3300d3a587b52573.zip
Include <stdbool.h> unconditionally.
Diffstat (limited to 'src/system.h')
-rw-r--r--src/system.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/system.h b/src/system.h
index c4c4d64e6..ae1630196 100644
--- a/src/system.h
+++ b/src/system.h
@@ -117,11 +117,7 @@ void *memrchr (const void *, int, size_t);
extern int errno;
#endif
-#if HAVE_STDBOOL_H
-# include <stdbool.h>
-#else
-typedef enum {false = 0, true = 1} bool;
-#endif
+#include <stdbool.h>
#if HAVE_STDLIB_H
# define getopt system_getopt