mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-13 23:00:22 +00:00
Correct WCHAR_MIN, WCHAR_MAX, and WINT_MAX values.
This commit is contained in:
parent
1d72020051
commit
dc7500a6e9
@ -269,13 +269,13 @@ typedef unsigned long long int uintmax_t;
|
||||
/* Limits of `wchar_t'. */
|
||||
# ifndef WCHAR_MIN
|
||||
/* These constants might also be defined in <wchar.h>. */
|
||||
# define WCHAR_MIN (-2147483647-1)
|
||||
# define WCHAR_MIN (0)
|
||||
# define WCHAR_MAX (2147483647)
|
||||
# endif
|
||||
|
||||
/* Limits of `wint_t'. */
|
||||
# define WINT_MIN (0)
|
||||
# define WINT_MAX (4294967295U)
|
||||
# define WINT_MAX (2147483647)
|
||||
|
||||
#endif /* C++ && limit macros */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user