OSDN Git Service

* pa-osf.h (SIZE_TYPE): Define as "long unsigned int" to be
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Jun 1994 19:16:07 +0000 (19:16 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Jun 1994 19:16:07 +0000 (19:16 +0000)
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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7451 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/pa/pa-osf.h

index 062b0f4..5df1711 100644 (file)
@@ -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"