From 6833780818c60b3f3a0a120f711369bb8158a0d5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 10 Sep 1999 19:43:01 +0000 Subject: Update. 1999-09-10 Ulrich Drepper * 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 * elf/link.h: Fix comment. 1999-09-10 Ulrich Drepper * math/bits/mathcalls.h: Add __isnan declaration [PR libc/1294]. * math/math.h: Pretty print. --- wcsmbs/wchar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wcsmbs') diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index be27dbc..19e6d87 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -77,8 +77,8 @@ typedef __mbstate_t mbstate_t; #ifndef WCHAR_MIN /* These constants might also be defined in . */ -# define WCHAR_MIN ((wchar_t) 0) -# define WCHAR_MAX (~WCHAR_MIN) +# define WCHAR_MIN (0) +# define WCHAR_MAX (0x7fffffff) #endif #ifndef WEOF -- cgit v1.1