summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/bits/uClibc_ctype.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-16 09:52:34 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-16 09:52:34 +0000
commitb5543599fd6ef5424a7081abd0ead627fa006116 (patch)
tree9a8a0513af228dde22bca155597a52437e6433dc /libc/sysdeps/linux/common/bits/uClibc_ctype.h
parente483359d3e793318147da2cb09600c323753edee (diff)
Better guards within _LIBC, cleanup, typos
Diffstat (limited to 'libc/sysdeps/linux/common/bits/uClibc_ctype.h')
-rw-r--r--libc/sysdeps/linux/common/bits/uClibc_ctype.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/common/bits/uClibc_ctype.h b/libc/sysdeps/linux/common/bits/uClibc_ctype.h
index 50cbd6bb2..dd723c77c 100644
--- a/libc/sysdeps/linux/common/bits/uClibc_ctype.h
+++ b/libc/sysdeps/linux/common/bits/uClibc_ctype.h
@@ -184,14 +184,6 @@ extern int toascii(int c) __THROW;
#define _toupper(c) ((c) ^ 0x20)
#define _tolower(c) ((c) | 0x20)
-
-/* Apparently, glibc implements things as macros if __NO_CTYPE isn't defined.
- * If we don't have locale support, we'll do the same. Otherwise, we'll
- * only use macros for the supported-locale-invariant cases. */
-#ifndef __UCLIBC_HAS_LOCALE__
-
-#endif /* __UCLIBC_HAS_LOCALE__ */
-
__END_DECLS
/**********************************************************************/