Don't use <stdbool.h>; it is incompatible with older versions of
authorChris Hanson <org/chris-hanson/cph>
Tue, 29 Jan 2002 05:57:24 +0000 (05:57 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 29 Jan 2002 05:57:24 +0000 (05:57 +0000)
ncurses.

v7/src/microcode/confshared.h

index a2c289ef66abab353c909412aefac50115c362c6..8395935f4bef7fd8b67f9904ccaa1eb2fb5bc68a 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: confshared.h,v 11.2 2002/01/29 04:58:46 cph Exp $
+$Id: confshared.h,v 11.3 2002/01/29 05:57:24 cph Exp $
 
 Copyright (c) 2000, 2002 Massachusetts Institute of Technology
 
@@ -48,12 +48,8 @@ USA.
 /* These C type definitions are needed by everybody.
    They should not be here, but it is unavoidable. */
 typedef char Boolean;
-#ifdef HAVE_STDBOOL_H
-#  include <stdbool.h>
-#else
-#  define true         ((Boolean) TRUE)
-#  define false                ((Boolean) FALSE)
-#endif
+#define true           ((Boolean) TRUE)
+#define false          ((Boolean) FALSE)
 
 /* This is the Scheme object type.
    The various fields are defined in "object.h". */