From: Ulrich Drepper Date: Mon, 2 Mar 1998 13:41:58 +0000 (+0000) Subject: Change all _ISxxx to _ISwxxx. X-Git-Tag: cvs/before-sparc-2_0_x-branch~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00a1958c4ee276f2c47829ef11706b9353839341;p=thirdparty%2Fglibc.git Change all _ISxxx to _ISwxxx. --- diff --git a/wctype/wcfuncs.c b/wctype/wcfuncs.c index b5ac8906095..48d553ce103 100644 --- a/wctype/wcfuncs.c +++ b/wctype/wcfuncs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1998 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 @@ -25,17 +25,17 @@ Boston, MA 02111-1307, USA. */ #define func(name, type) \ int name (wc) wint_t wc; { return iswctype (wc, type); } -func (iswalnum, _ISalnum) -func (iswalpha, _ISalpha) -func (iswcntrl, _IScntrl) -func (iswdigit, _ISdigit) -func (iswlower, _ISlower) -func (iswgraph, _ISgraph) -func (iswprint, _ISprint) -func (iswpunct, _ISpunct) -func (iswspace, _ISspace) -func (iswupper, _ISupper) -func (iswxdigit, _ISxdigit) +func (iswalnum, _ISwalnum) +func (iswalpha, _ISwalpha) +func (iswcntrl, _ISwcntrl) +func (iswdigit, _ISwdigit) +func (iswlower, _ISwlower) +func (iswgraph, _ISwgraph) +func (iswprint, _ISwprint) +func (iswpunct, _ISwpunct) +func (iswspace, _ISwspace) +func (iswupper, _ISwupper) +func (iswxdigit, _ISwxdigit) wint_t towlower (wc)