diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-24 06:52:31 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-24 06:52:31 +0000 |
commit | f91d9a467729f3331266f73ff0249eefdf19fd8a (patch) | |
tree | 1ac3d3476fe73471ab4ee8922c31fc716c4db3c0 | |
parent | 5f781ba3552b52df5d73b8e0e3435f7e90a44dff (diff) | |
download | gcc-f91d9a467729f3331266f73ff0249eefdf19fd8a.zip gcc-f91d9a467729f3331266f73ff0249eefdf19fd8a.tar.gz gcc-f91d9a467729f3331266f73ff0249eefdf19fd8a.tar.bz2 |
Undef TRUE and FALSE before #include.
From-SVN: r4552
-rw-r--r-- | gcc/config/i386/xm-aix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/i386/xm-aix.h b/gcc/config/i386/xm-aix.h index 88ccb88..9e8f669 100644 --- a/gcc/config/i386/xm-aix.h +++ b/gcc/config/i386/xm-aix.h @@ -19,6 +19,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define USG +#undef TRUE +#undef FALSE + #include "i386/xm-i386.h" #define bcopy(a,b,c) memcpy (b,a,c) |