From f794cadfb35607bb2c2803a7b9be2b406978cd53 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 13 Jun 1992 20:56:58 +0000 Subject: [PATCH] (WCHAR_TYPE): Now unsigned int. (WCHAR_T=TYPE_SIZE): Now 32. From-SVN: r1200 --- gcc/config/vax/ultrix.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gcc/config/vax/ultrix.h b/gcc/config/vax/ultrix.h index 9ed664a6752..b4da0c90156 100644 --- a/gcc/config/vax/ultrix.h +++ b/gcc/config/vax/ultrix.h @@ -6,8 +6,9 @@ /* By default, allow $ to be part of an identifier. */ #define DOLLARS_IN_IDENTIFIERS 1 -/* These are as defined in /usr/include/sys/stdtypes.h */ +/* These are as defined in /usr/include/sys/stdtypes.h. + These values are for ultrix 4.2 on the vax. */ #define SIZE_TYPE "unsigned int" #define PTRDIFF_TYPE "int" -#define WCHAR_TYPE "short unsigned int" -#define WCHAR_TYPE_SIZE 16 +#define WCHAR_TYPE "unsigned int" +#define WCHAR_TYPE_SIZE 32 -- 2.30.2