From: Jim Meyering Date: Fri, 6 Jun 2003 19:16:31 +0000 (+0000) Subject: Include unconditionally. X-Git-Tag: v5.0.1~381 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5818cca68342e9f81e886e7a40432fb169d0c7d;p=thirdparty%2Fcoreutils.git Include unconditionally. --- diff --git a/lib/cycle-check.c b/lib/cycle-check.c index fb1746fcf7..8c7463b2f8 100644 --- a/lib/cycle-check.c +++ b/lib/cycle-check.c @@ -28,11 +28,7 @@ #include #include -#if HAVE_STDBOOL_H -# include -#else -typedef enum {false = 0, true = 1} bool; -#endif +#include #include "cycle-check.h" #include "xalloc.h" diff --git a/lib/cycle-check.h b/lib/cycle-check.h index 6f8c55d5d3..5f2ad1dc17 100644 --- a/lib/cycle-check.h +++ b/lib/cycle-check.h @@ -10,11 +10,7 @@ #include #include - #if HAVE_STDBOOL_H - # include - #else - typedef enum {false = 0, true = 1} bool; - #endif + #include so that the proper identifiers are all declared. */