diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/rdi-share/host.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 993cb93d294..fd70107d797 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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. diff --git a/gdb/rdi-share/host.h b/gdb/rdi-share/host.h index 53b65681b8a..2fdbf5f4541 100644 --- a/gdb/rdi-share/host.h +++ b/gdb/rdi-share/host.h @@ -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 |