* 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

@ -137,14 +137,14 @@ typedef unsigned long long uintmax_t;
#ifndef WCHAR_MIN /* also in wchar.h */
#define WCHAR_MIN 0
#define WCHAR_MAX ((wchar_t)-1) /* UINT16_MAX */
#define WCHAR_MAX 0xffff /* UINT16_MAX */
#endif
/*
* wint_t is unsigned short for compatibility with MS runtime
*/
#define WINT_MIN 0
#define WINT_MAX ((wint_t)-1) /* UINT16_MAX */
#define WINT_MAX 0xffff /* UINT16_MAX */
#endif /* !defined ( __cplusplus) || defined __STDC_LIMIT_MACROS */