diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-20 08:37:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-20 08:37:13 +0000 |
commit | 00d8bc81a96ff398af9517f1ad49b729cc4795d1 (patch) | |
tree | aa4478a0cfa910ebf81e6d471f4df9867d7df1a7 /ctype | |
parent | 2f599545f5ad0e51aa3edd445edd18ca1d7ec2df (diff) | |
download | glibc-00d8bc81a96ff398af9517f1ad49b729cc4795d1.tar glibc-00d8bc81a96ff398af9517f1ad49b729cc4795d1.tar.gz glibc-00d8bc81a96ff398af9517f1ad49b729cc4795d1.tar.bz2 glibc-00d8bc81a96ff398af9517f1ad49b729cc4795d1.zip |
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 <jsm28@cam.ac.uk>.
Diffstat (limited to 'ctype')
-rw-r--r-- | ctype/ctype.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctype/ctype.h b/ctype/ctype.h index 510b28ce3d..808e7bbf48 100644 --- a/ctype/ctype.h +++ b/ctype/ctype.h @@ -100,7 +100,7 @@ __exctype (isspace); __exctype (isupper); __exctype (isxdigit); -#ifdef __USE_GNU +#ifdef __USE_ISOC99 __exctype (isblank); #endif @@ -159,7 +159,7 @@ __exctype (_tolower); # define isupper(c) __isctype((c), _ISupper) # define isxdigit(c) __isctype((c), _ISxdigit) -# ifdef __USE_GNU +# ifdef __USE_ISOC99 # define isblank(c) __isctype((c), _ISblank) # endif |