summaryrefslogtreecommitdiff
path: root/libc/misc/regex/regex_internal.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-30 16:05:33 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-30 16:05:33 +0000
commit75b1747bb2343695a736cfbb361d40026d4edeac (patch)
tree74287311ad8994aa200f858718f7ec4e48300103 /libc/misc/regex/regex_internal.h
parentbda2d7e868b4fe7c098484aea1d0105a55b75fcf (diff)
make regex a little bit smaller
Diffstat (limited to 'libc/misc/regex/regex_internal.h')
-rw-r--r--libc/misc/regex/regex_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/regex/regex_internal.h b/libc/misc/regex/regex_internal.h
index 4782883c1..d82cf6d42 100644
--- a/libc/misc/regex/regex_internal.h
+++ b/libc/misc/regex/regex_internal.h
@@ -29,6 +29,7 @@
#if defined HAVE_LANGINFO_H || defined HAVE_LANGINFO_CODESET || defined _LIBC
# include <langinfo.h>
+libc_hidden_proto(nl_langinfo)
#endif
#if defined HAVE_LOCALE_H || defined _LIBC
# include <locale.h>
@@ -52,7 +53,7 @@
#endif
/* In case that the system doesn't have isblank(). */
-#if !defined _LIBC && !defined HAVE_ISBLANK && !defined isblank
+#if !defined _LIBC && !defined HAVE_ISBLANK && !defined isblank && !defined __UCLIBC__
# define isblank(ch) ((ch) == ' ' || (ch) == '\t')
#endif