diff options
author | Timothy Moore <moore@gnu.org> | 1992-09-17 19:09:02 +0000 |
---|---|---|
committer | Timothy Moore <moore@gnu.org> | 1992-09-17 19:09:02 +0000 |
commit | 3e5c2e141d17d4cf81b2b05dddb370d76e18060b (patch) | |
tree | 98745b7022778e86c4cddf4a6d87da108990b79a | |
parent | 3d247e852112788247f4d90c626a34838d02216f (diff) | |
download | gcc-3e5c2e141d17d4cf81b2b05dddb370d76e18060b.zip gcc-3e5c2e141d17d4cf81b2b05dddb370d76e18060b.tar.gz gcc-3e5c2e141d17d4cf81b2b05dddb370d76e18060b.tar.bz2 |
(SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE,
WCHAR_SIZE): Define for hpux.
From-SVN: r2143
-rw-r--r-- | gcc/config/pa/pa-hpux.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config/pa/pa-hpux.h b/gcc/config/pa/pa-hpux.h index e7678eb..d614cbc 100644 --- a/gcc/config/pa/pa-hpux.h +++ b/gcc/config/pa/pa-hpux.h @@ -1,7 +1,15 @@ #include "pa.h" /* Make GCC agree with types.h. */ +#undef SIZE_TYPE +#undef PTRDIFF_TYPE +#undef WCHAR_TYPE +#undef WCHAR_TYPE_SIZE + #define SIZE_TYPE "unsigned int" +#define PTRDIFF_TYPE "int" +#define WCHAR_TYPE "unsigned int" +#define WCHAR_TYPE_SIZE 32 /* HPUX doesn't use any debugging format that GCC knows about. */ #undef DBX_DEBUGGING_INFO |