diff options
author | 2012-02-25 23:18:39 -0500 | |
---|---|---|
committer | 2012-02-25 23:18:39 -0500 | |
commit | 3134156779108fe8b46e0f4cd60d837572faaa93 (patch) | |
tree | db3da5a5e28ad6c417c3d942b7ea62013c7b8646 /include/wctype.h | |
parent | Fix ISO C11 definitions in time.h (diff) | |
download | glibc-3134156779108fe8b46e0f4cd60d837572faaa93.tar.gz glibc-3134156779108fe8b46e0f4cd60d837572faaa93.tar.bz2 glibc-3134156779108fe8b46e0f4cd60d837572faaa93.zip |
First steps to get conformtest fully working
Diffstat (limited to 'include/wctype.h')
-rw-r--r-- | include/wctype.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wctype.h b/include/wctype.h index 9833f958dd..a2ee9ff880 100644 --- a/include/wctype.h +++ b/include/wctype.h @@ -1,5 +1,6 @@ #ifndef _WCTYPE_H +#ifndef _ISOMAC /* We try to get wint_t from <stddef.h>, but not all GCC versions define it there. So define it ourselves if it remains undefined. */ # define __need_wint_t @@ -33,9 +34,11 @@ libc_hidden_proto (iswspace) libc_hidden_proto (iswxdigit) libc_hidden_proto (towlower) libc_hidden_proto (towupper) +#endif #include <wctype/wctype.h> +#ifndef _ISOMAC /* Internal interfaces. */ extern int __iswalpha_l_internal (wint_t __wc, __locale_t __locale) attribute_hidden; @@ -96,3 +99,4 @@ libc_hidden_proto (__towupper_l) # endif #endif +#endif |