(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. |
`-----------*/
#ifndef TRUE
# define TRUE (1)
# define FALSE (0)
#if HAVE_STDBOOL_H
# include <stdbool.h>
#else
typedef enum {false = 0, true = 1} bool;
#endif
typedef int bool;
/*-----------.