From: Peter S. Mazinger Date: Sun, 15 Jan 2006 17:59:48 +0000 (-0000) Subject: get rid of warning if UCLIBC_HAS_CTYPE_TABLES is not enabled X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=eba63c6f8fa24c141ce247b2216b2e800f02e77e;p=uclinux-h8%2FuClibc.git get rid of warning if UCLIBC_HAS_CTYPE_TABLES is not enabled --- diff --git a/libc/misc/regex/regex.c b/libc/misc/regex/regex.c index 8bac9c775..864a92821 100644 --- a/libc/misc/regex/regex.c +++ b/libc/misc/regex/regex.c @@ -57,8 +57,10 @@ libc_hidden_proto(wctype) #endif #include +#ifdef __UCLIBC_HAS_CTYPE_TABLES__ #define __toupper toupper #define __tolower tolower +#endif #define __mempcpy mempcpy libc_hidden_proto(toupper) libc_hidden_proto(tolower)