Commit f9317f0d by Michael Meissner

make wchar_t long, not unsigned short

From-SVN: r14322
parent c53aa195
...@@ -372,11 +372,11 @@ do { \ ...@@ -372,11 +372,11 @@ do { \
/* Type used for wchar_t, as a string used in a declaration. */ /* Type used for wchar_t, as a string used in a declaration. */
#undef WCHAR_TYPE #undef WCHAR_TYPE
#define WCHAR_TYPE "short unsigned int" #define WCHAR_TYPE "long int"
/* Width of wchar_t in bits. */ /* Width of wchar_t in bits. */
#undef WCHAR_TYPE_SIZE #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 */ /* Make int foo : 8 not cause structures to be aligned to an int boundary */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment