diff options
author | Nick Clifton <nickc@redhat.com> | 2002-02-06 20:09:18 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-02-06 20:09:18 +0000 |
commit | 095778a05ed02821c9c55e443c1ea0d2ead3bac0 (patch) | |
tree | 2b27621b5707b00db845e1330651c32b559c9653 /gdb | |
parent | 1900040cf3086ac919a5088dca1ad5de52f33693 (diff) | |
download | fsf-binutils-gdb-095778a05ed02821c9c55e443c1ea0d2ead3bac0.zip fsf-binutils-gdb-095778a05ed02821c9c55e443c1ea0d2ead3bac0.tar.gz fsf-binutils-gdb-095778a05ed02821c9c55e443c1ea0d2ead3bac0.tar.bz2 |
Only provide a typedef for bool if it is not defined.
Diffstat (limited to 'gdb')
-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 993cb93..fd70107 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 53b6568..2fdbf5f 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 |