From: Ulrich Drepper Date: Fri, 10 Sep 1999 19:39:13 +0000 (+0000) Subject: (WCHAR_MIN, WCHAR_MAX): use all-numeric values. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8c783bfd0b32df183c67919c55cb1795d849b6d;p=thirdparty%2Fglibc.git (WCHAR_MIN, WCHAR_MAX): use all-numeric values. --- diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index fddb3d626c9..95480e9936c 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -58,8 +58,8 @@ typedef struct #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