summaryrefslogtreecommitdiff
path: root/lib/cycle-check.h
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.h
parent4a57eac20dc5aa55b0d9beaefd00c35928b88de0 (diff)
downloadcoreutils-e5818cca68342e9f81e886e7a40432fb169d0c7d.tar.xz
Include <stdbool.h> unconditionally.
Diffstat (limited to 'lib/cycle-check.h')
-rw-r--r--lib/cycle-check.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/cycle-check.h b/lib/cycle-check.h
index 6f8c55d5d..5f2ad1dc1 100644
--- a/lib/cycle-check.h
+++ b/lib/cycle-check.h
@@ -10,11 +10,7 @@
#include <sys/types.h>
#include <sys/stat.h>
- #if HAVE_STDBOOL_H
- # include <stdbool.h>
- #else
- typedef enum {false = 0, true = 1} bool;
- #endif
+ #include <stdbool.h>
so that the proper identifiers are all declared. */