#include <assert.h>
+#if HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+
#if HAVE_STDLIB_H
# include <stdlib.h>
#endif
| 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;
/*-----------.