diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-09-10 19:43:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-09-10 19:43:01 +0000 |
commit | 6833780818c60b3f3a0a120f711369bb8158a0d5 (patch) | |
tree | 4fc7e61a6a38a01c9043fef489571045c814a743 /sysdeps/generic | |
parent | ec6275c0b7df29a34fd3beb7e29bc44fd63b8585 (diff) | |
download | glibc-6833780818c60b3f3a0a120f711369bb8158a0d5.tar.gz glibc-6833780818c60b3f3a0a120f711369bb8158a0d5.tar.xz glibc-6833780818c60b3f3a0a120f711369bb8158a0d5.zip |
Update.
1999-09-10 Ulrich Drepper <drepper@cygnus.com> * wcsmbs/wchar.h (WCHAR_MIN, WCHAR_MAX): Use all-numeric values. * sysdeps/generic/stdint.h: Correct WCHAR_MIN, WCHAR_MAX, and WINT_MAX values. * wctype/wctype.h: Remove incorrect towlower/towupper optimizations. 1999-09-09 Andreas Schwab <schwab@suse.de> * elf/link.h: Fix comment. 1999-09-10 Ulrich Drepper <drepper@cygnus.com> * math/bits/mathcalls.h: Add __isnan declaration [PR libc/1294]. * math/math.h: Pretty print.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/stdint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/stdint.h b/sysdeps/generic/stdint.h index a0d1c64901..9713d52348 100644 --- a/sysdeps/generic/stdint.h +++ b/sysdeps/generic/stdint.h @@ -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 */ |