diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1997-06-25 22:17:58 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1997-06-25 22:17:58 +0000 |
commit | f9317f0d751914dc72d58516900a972d4ffa8410 (patch) | |
tree | b2ff45d92743215f000ff5506b0623e0ece62cb9 | |
parent | c53aa1955e4e5bc0d98292e73125218ad5592ec6 (diff) | |
download | gcc-f9317f0d751914dc72d58516900a972d4ffa8410.zip gcc-f9317f0d751914dc72d58516900a972d4ffa8410.tar.gz gcc-f9317f0d751914dc72d58516900a972d4ffa8410.tar.bz2 |
make wchar_t long, not unsigned short
From-SVN: r14322
-rw-r--r-- | gcc/config/rs6000/sysv4.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index 635bb32..73c09df 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 */ |