diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-08 20:37:11 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-08 20:37:11 +0000 |
commit | ca773a850f79d6f346600439b6f91da58f7055a6 (patch) | |
tree | 18d08efe76adef4aa7c245e041ca9202cb698c62 /include | |
parent | f2239854568a38296d1a632321c6fee97410692b (diff) |
Obligatory forgotten file.
Diffstat (limited to 'include')
-rw-r--r-- | include/ctype.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/ctype.h b/include/ctype.h index 361f160f8..5034efbc1 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -27,6 +27,8 @@ #include <features.h> #include <bits/types.h> +#ifdef __UCLIBC_HAS_CTYPE_TABLES__ + __BEGIN_DECLS #ifndef _ISbit @@ -379,4 +381,10 @@ extern int toupper_l (int __c, __locale_t __l) __THROW; __END_DECLS +#else /* __UCLIBC_HAS_CTYPE_TABLES__ */ + +#include <bits/uClibc_ctype.h> + +#endif + #endif /* ctype.h */ |