diff options
| author | Jim Meyering <jim@meyering.net> | 2003-06-06 19:16:31 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2003-06-06 19:16:31 +0000 |
| commit | e5818cca68342e9f81e886e7a40432fb169d0c7d (patch) | |
| tree | 03d1e10cdfd0289218370831f555c5df9b295890 /lib/cycle-check.c | |
| parent | Merge from gnulib. (diff) | |
| download | coreutils-e5818cca68342e9f81e886e7a40432fb169d0c7d.tar.gz coreutils-e5818cca68342e9f81e886e7a40432fb169d0c7d.zip | |
Include <stdbool.h> unconditionally.
Diffstat (limited to 'lib/cycle-check.c')
| -rw-r--r-- | lib/cycle-check.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/cycle-check.c b/lib/cycle-check.c index fb1746fcf..8c7463b2f 100644 --- a/lib/cycle-check.c +++ b/lib/cycle-check.c @@ -28,11 +28,7 @@ #include <assert.h> #include <stdlib.h> -#if HAVE_STDBOOL_H -# include <stdbool.h> -#else -typedef enum {false = 0, true = 1} bool; -#endif +#include <stdbool.h> #include "cycle-check.h" #include "xalloc.h" |
