(WCHAR_TYPE_SIZE): Add a default definition.

From-SVN: r10806
This commit is contained in:
Jim Wilson 1995-12-18 16:13:24 -08:00
parent b01a1fdb06
commit fef610bec3
1 changed files with 8 additions and 0 deletions

View File

@ -27,6 +27,14 @@ Boston, MA 02111-1307, USA. */
#include <stdio.h>
#include <ctype.h>
#ifndef WCHAR_TYPE_SIZE
#ifdef INT_TYPE_SIZE
#define WCHAR_TYPE_SIZE INT_TYPE_SIZE
#else
#define WCHAR_TYPE_SIZE BITS_PER_WORD
#endif
#endif
extern struct obstack permanent_obstack;
enum attrs {A_PACKED, A_NOCOMMON, A_NORETURN, A_CONST, A_T_UNION,