diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-16 08:39:42 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-16 08:39:42 -0500 |
commit | d393843914e750173ca0cfcc4668ee12fac2455d (patch) | |
tree | f09e5b4ca2dd76e5f467e1f6eedfa639b0dcc44a /gcc | |
parent | 40938406e75ae354f94511c907a68e4ce721efd3 (diff) | |
download | gcc-d393843914e750173ca0cfcc4668ee12fac2455d.zip gcc-d393843914e750173ca0cfcc4668ee12fac2455d.tar.gz gcc-d393843914e750173ca0cfcc4668ee12fac2455d.tar.bz2 |
(WCHAR_TYPE, WCHAR_TYPE_SIZE): Use short unsigned int.
From-SVN: r11287
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/win-nt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/config/alpha/win-nt.h b/gcc/config/alpha/win-nt.h index cb3d9eb..3ac5f73 100644 --- a/gcc/config/alpha/win-nt.h +++ b/gcc/config/alpha/win-nt.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler, for DEC Alpha running Windows/NT. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu) This file is part of GNU CC. @@ -46,6 +46,11 @@ Boston, MA 02111-1307, USA. */ #undef LONG_TYPE_SIZE #define LONG_TYPE_SIZE 32 +#undef WCHAR_TYPE +#define WCHAR_TYPE "short unsigned int" +#undef WCHAR_TYPE_SIZE +#define WCHAR_TYPE_SIZE 16 + /* We can't do any debugging. */ #undef SDB_DEBUGGING_INFO #undef DBX_DEBUGGING_INFO |