* include/wchar.h (WCHAR_MAX): Define as 0xffff, so preprocessor

#if (WCHAR_MAX <= WCHAR_MIN) is false.
	* include/stdint.h (WCHAR_MAX): Likwise.
	(WINT_MAX): Likewise.
This commit is contained in:
Danny Smith
2005-05-04 09:29:09 +00:00
parent 530d0e0191
commit f3b0036304
3 changed files with 10 additions and 3 deletions

View File

@ -51,7 +51,7 @@
#endif /* __STRICT_ANSI__ */
#define WCHAR_MIN 0
#define WCHAR_MAX ((wchar_t)-1)
#define WCHAR_MAX 0xffff
#ifndef WEOF
#define WEOF (wchar_t)(0xFFFF)