Only provide a typedef for bool if it is not defined.
authorNick Clifton <nickc@redhat.com>
Wed, 6 Feb 2002 20:09:18 +0000 (20:09 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 6 Feb 2002 20:09:18 +0000 (20:09 +0000)
gdb/ChangeLog
gdb/rdi-share/host.h

index 993cb93d294019875398d21235452ad31c870952..fd70107d79798ad2d3f82034e4f002e7e766458c 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-06  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * rdi-share/host.h: Only provide a typedef for bool if it is not
+       defined.
+
 2002-02-04  Michael Snyder  <msnyder@redhat.com>
 
        * breakpoint.h (enum bptype): Add new overlay event bp type.
index 53b65681b8af9fc26297ce4b6b392b8c7f3cfb47..2fdbf5f4541ce7017c3e0fad944cd840763abaa2 100644 (file)
@@ -120,7 +120,9 @@ typedef unsigned       char  unsigned8;
 #  if defined(_MFC_VER) || defined(__CC_NORCROFT) /* When using MS Visual C/C++ v4.2 */
 #    define bool _bool /* avoids "'bool' is reserved word" warning      */
 #  else
-     typedef _bool bool;
+#    ifndef bool
+       typedef _bool bool;
+#    endif
 #  endif
 #  define true _true
 #  define false _false