aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cycle-check.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-06 19:16:31 +0000
committerJim Meyering <jim@meyering.net>2003-06-06 19:16:31 +0000
commite5818cca68342e9f81e886e7a40432fb169d0c7d (patch)
tree03d1e10cdfd0289218370831f555c5df9b295890 /lib/cycle-check.c
parentMerge from gnulib. (diff)
downloadcoreutils-e5818cca68342e9f81e886e7a40432fb169d0c7d.tar.gz
coreutils-e5818cca68342e9f81e886e7a40432fb169d0c7d.zip
Include <stdbool.h> unconditionally.
Diffstat (limited to 'lib/cycle-check.c')
-rw-r--r--lib/cycle-check.c6
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"