diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-19 02:09:48 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-19 02:09:48 +0200 |
commit | 7aa9c2486c2d85a8de6204ab3734f457d450cdb6 (patch) | |
tree | 7ce42796e9613af1c50ffe8676f4bf5f85d44b27 /libc/string | |
parent | 93f8a2e834eed69aff7ef3be8c2baba14bab0658 (diff) |
remove a few more empty #if/#endif pairs
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/_collate.c | 7 | ||||
-rw-r--r-- | libc/string/strncasecmp.c | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/libc/string/_collate.c b/libc/string/_collate.c index eadbd6c6e..77d9eb62c 100644 --- a/libc/string/_collate.c +++ b/libc/string/_collate.c @@ -19,9 +19,6 @@ #include <errno.h> #include <assert.h> -#ifdef WANT_WIDE -#endif - #ifdef __UCLIBC_HAS_LOCALE__ #if defined(L_strxfrm) || defined(L_strxfrm_l) || defined(L_wcsxfrm) || defined(L_wcsxfrm_l) @@ -512,9 +509,9 @@ int __XL_NPP(wcscoll) (const Wchar *s0, const Wchar *s1 __LOCALE_PARAM ) if (!CUR_COLLATE->num_weights) { /* C locale */ #ifdef WANT_WIDE return wcscmp(s0, s1); -#else /* WANT_WIDE */ +#else return strcmp(s0, s1); -#endif /* WANT_WIDE */ +#endif } pass = 0; diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index b290e5a22..2af305e16 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.c @@ -21,8 +21,6 @@ # ifdef __UCLIBC_DO_XLOCALE # define TOLOWER(C) tolower_l((C), locale_arg) # else -#if !defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_HAS_CTYPE_TABLES__ -#endif # define TOLOWER(C) tolower((C)) # endif #endif |