summaryrefslogtreecommitdiff
path: root/libc/misc/ctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/ctype.c')
-rw-r--r--libc/misc/ctype.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libc/misc/ctype.c b/libc/misc/ctype.c
index 0425f00..d684e15 100644
--- a/libc/misc/ctype.c
+++ b/libc/misc/ctype.c
@@ -9,9 +9,6 @@
#include <ctype.h>
-#undef toupper
-#undef tolower
-
unsigned char __ctype[257] =
{
0, /* -1 */
@@ -56,14 +53,3 @@ unsigned char __ctype[257] =
__CT_p, __CT_p, __CT_p, __CT_c /* 0x7C..0x7F */
};
-int toupper(c)
-int c;
-{
- return(islower(c) ? (c ^ 0x20) : (c));
-}
-
-int tolower(c)
-int c;
-{
- return(isupper(c) ? (c ^ 0x20) : (c));
-}