diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-08-01 14:30:43 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-08-01 14:30:43 +0530 |
commit | a476ac4b45fe39b023bed55c852abad04d70c5df (patch) | |
tree | 608fb6a0556081e61ab4de10a296baf2fa9fbf4b /posix/regex_internal.h | |
parent | 78dd658a025fb16d004677284b4db0d0c0191845 (diff) | |
download | glibc-a476ac4b45fe39b023bed55c852abad04d70c5df.tar.gz glibc-a476ac4b45fe39b023bed55c852abad04d70c5df.tar.xz glibc-a476ac4b45fe39b023bed55c852abad04d70c5df.zip |
Fix -Wundef warnings in regex_internal.h
Diffstat (limited to 'posix/regex_internal.h')
-rw-r--r-- | posix/regex_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/regex_internal.h b/posix/regex_internal.h index 75c390f8c8..4bbf6a8276 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -90,7 +90,7 @@ # define SIZE_MAX ((size_t) -1) #endif -#if (defined MB_CUR_MAX && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_WCRTOMB && HAVE_MBRTOWC && HAVE_WCSCOLL) || _LIBC +#if (defined MB_CUR_MAX && HAVE_WCTYPE_H && HAVE_ISWCTYPE) || _LIBC # define RE_ENABLE_I18N #endif |