(bool, false, true): Use a definition consistent with ../lib/hash.c.

This commit is contained in:
Paul Eggert
2002-10-22 04:40:09 +00:00
parent a3714bcedf
commit 78b8881659

View File

@@ -181,11 +181,11 @@ void *memrchr (const void *s, int c, size_t n);
| Booleans. | | Booleans. |
`-----------*/ `-----------*/
#ifndef TRUE #if HAVE_STDBOOL_H
# define TRUE (1) # include <stdbool.h>
# define FALSE (0) #else
typedef enum {false = 0, true = 1} bool;
#endif #endif
typedef int bool;
/*-----------. /*-----------.