diff options
author | Jeff Law <law@gcc.gnu.org> | 1994-06-14 13:16:07 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1994-06-14 13:16:07 -0600 |
commit | 36e2f858ba48aa9230e081ac48f69ae11fd623f1 (patch) | |
tree | 65ac724ec66f362266d1b98ac9ad8331d94f2682 /gcc | |
parent | d0616842674b6d7a5cc0b52681b5704f592d76bd (diff) | |
download | gcc-36e2f858ba48aa9230e081ac48f69ae11fd623f1.zip gcc-36e2f858ba48aa9230e081ac48f69ae11fd623f1.tar.gz gcc-36e2f858ba48aa9230e081ac48f69ae11fd623f1.tar.bz2 |
pa-osf.h (SIZE_TYPE): Define as "long unsigned int" to be compatable with system include files.
* pa-osf.h (SIZE_TYPE): Define as "long unsigned int" to be
compatable with system include files.
* pa1-osf.h (SIZE_TYPE): Likewise.
* pa1-osf.h (WCHAR_TYPE): Define as "short unsigned int".
(WCHAR_TYPE_SIZE): Define as 16 bits.
From-SVN: r7451
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa-osf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/pa/pa-osf.h b/gcc/config/pa/pa-osf.h index 062b0f4..5df1711 100644 --- a/gcc/config/pa/pa-osf.h +++ b/gcc/config/pa/pa-osf.h @@ -34,3 +34,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define WCHAR_TYPE "short unsigned int" #define WCHAR_TYPE_SIZE 16 + +/* OSF1 wants to be different and use unsigned long as size_t. */ +#undef SIZE_TYPE +#define SIZE_TYPE "long unsigned int" |