diff options
Diffstat (limited to 'gcc/config/netbsd.h')
-rw-r--r-- | gcc/config/netbsd.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/config/netbsd.h b/gcc/config/netbsd.h index fba341b..227942c 100644 --- a/gcc/config/netbsd.h +++ b/gcc/config/netbsd.h @@ -109,3 +109,16 @@ /* Handle #pragma weak and #pragma pack. */ #define HANDLE_SYSV_PRAGMA + + +/* Define some types that are the same on all NetBSD platforms, + making them agree with <machine/ansi.h>. */ + +#undef WCHAR_TYPE +#define WCHAR_TYPE "int" + +#undef WCHAR_TYPE_SIZE +#define WCHAR_TYPE_SIZE 32 + +#undef WINT_TYPE +#define WINT_TYPE "int" |