From f9317f0d751914dc72d58516900a972d4ffa8410 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Wed, 25 Jun 1997 22:17:58 +0000 Subject: [PATCH] make wchar_t long, not unsigned short From-SVN: r14322 --- gcc/config/rs6000/sysv4.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index 635bb329d11..73c09dfa24e 100644 --- a/gcc/config/rs6000/sysv4.h +++ b/gcc/config/rs6000/sysv4.h @@ -372,11 +372,11 @@ do { \ /* Type used for wchar_t, as a string used in a declaration. */ #undef WCHAR_TYPE -#define WCHAR_TYPE "short unsigned int" +#define WCHAR_TYPE "long int" /* Width of wchar_t in bits. */ #undef WCHAR_TYPE_SIZE -#define WCHAR_TYPE_SIZE 16 +#define WCHAR_TYPE_SIZE 32 /* Make int foo : 8 not cause structures to be aligned to an int boundary */ -- 2.30.2