From 00d8bc81a96ff398af9517f1ad49b729cc4795d1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 20 Aug 2000 08:37:13 +0000 Subject: Update. * ctype/ctype.h (isblank): Make available if ISO C99. * wctype/wctype.h (iswblank): Make available if ISO C99. * math/math.h (signgam): Don't make available if ISO C99. * math/tgmath.h (tgamma): Renamed from gamma. Patches by Joseph S. Myers . --- wctype/wctype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wctype') diff --git a/wctype/wctype.h b/wctype/wctype.h index afed31e963..c85e5616bb 100644 --- a/wctype/wctype.h +++ b/wctype/wctype.h @@ -165,7 +165,7 @@ extern int iswxdigit (wint_t __wc) __THROW; /* Test for any wide character that corresponds to a standard blank wide character or a locale-specific set of wide characters for which `iswalnum' is false. */ -# ifdef __USE_GNU +# ifdef __USE_ISOC99 extern int iswblank (wint_t __wc) __THROW; # endif @@ -233,7 +233,7 @@ extern unsigned int *__ctype32_b; (__builtin_constant_p (wc) && (wint_t) (wc) <= L'\xff' \ ? (int) (__ctype32_b[(wint_t) (wc)] & _ISwxdigit) : iswxdigit (wc))) -# ifdef __USE_GNU +# ifdef __USE_ISOC99 # define iswblank(wc) \ (__extension__ \ (__builtin_constant_p (wc) && (wint_t) (wc) <= L'\xff' \ -- cgit v1.2.3