diff options
author | Bruce Korb <autogen@linuxbox.com> | 1999-10-12 15:57:47 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 1999-10-12 15:57:47 +0000 |
commit | bf66d77aa5fc799679ebed1b6fe6d4f0b3b4cb66 (patch) | |
tree | 883095118bfbb5902dc0d27533db9a1fa6ebb937 /gcc/fixinc | |
parent | 8988641b740e85d3cf57f663acb553609e8c20a3 (diff) | |
download | gcc-bf66d77aa5fc799679ebed1b6fe6d4f0b3b4cb66.zip gcc-bf66d77aa5fc799679ebed1b6fe6d4f0b3b4cb66.tar.gz gcc-bf66d77aa5fc799679ebed1b6fe6d4f0b3b4cb66.tar.bz2 |
Protect the definitions of the t_bool enum
[[Split portion of a mixed commit.]]
From-SVN: r29923.2
Diffstat (limited to 'gcc/fixinc')
-rw-r--r-- | gcc/fixinc/fixlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/fixinc/fixlib.h b/gcc/fixinc/fixlib.h index 3821905..3aff755 100644 --- a/gcc/fixinc/fixlib.h +++ b/gcc/fixinc/fixlib.h @@ -76,10 +76,13 @@ typedef int t_success; #define EXIT_PANIC 99 +#ifndef HAVE_T_BOOL_ENUM +#define HAVE_T_BOOL_ENUM typedef enum { BOOL_FALSE, BOOL_TRUE } t_bool; +#endif #define _P_(p) () #endif |