diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-06 19:17:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-06 19:17:37 +0000 |
commit | da5cbe5ef8c0425de671331d3300d3a587b52573 (patch) | |
tree | 09db8ec547af2de3d78d18ff7d48c4c1e10dae07 | |
parent | e5818cca68342e9f81e886e7a40432fb169d0c7d (diff) | |
download | coreutils-da5cbe5ef8c0425de671331d3300d3a587b52573.tar.xz |
Include <stdbool.h> unconditionally.
-rw-r--r-- | src/system.h | 6 |
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 |