diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2005-04-15 21:52:56 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2005-04-15 21:52:56 +0000 |
commit | cbf3de8686f974ca639f24e550edbc1d59445964 (patch) | |
tree | b9a871e74f6324e5b48a72ca3d1db9bf03498ed0 /gnu/usr.bin | |
parent | e2f35486c9442c1218ce8453a6b48aa62be75696 (diff) |
pedantic fix for wchar type inside gcc.
checked through a make release by drahn@
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/gcc/gcc/config/arm/openbsd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/arm/openbsd.h b/gnu/usr.bin/gcc/gcc/config/arm/openbsd.h index 524f864a98e..adabc9189ff 100644 --- a/gnu/usr.bin/gcc/gcc/config/arm/openbsd.h +++ b/gnu/usr.bin/gcc/gcc/config/arm/openbsd.h @@ -127,6 +127,12 @@ Boston, MA 02111-1307, USA. */ #undef PTRDIFF_TYPE #define PTRDIFF_TYPE "int" +#undef WCHAR_TYPE +#define WCHAR_TYPE "int" + +#undef WCHAR_TYPE_SIZE +#define WCHAR_TYPE_SIZE 32 + /* We don't have any limit on the length as out debugger is GDB. */ #undef DBX_CONTIN_LENGTH |