From e8c783bfd0b32df183c67919c55cb1795d849b6d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 10 Sep 1999 19:39:13 +0000 Subject: [PATCH] (WCHAR_MIN, WCHAR_MAX): use all-numeric values. --- wcsmbs/wchar.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.2