summaryrefslogtreecommitdiff
path: root/include/ctype.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-10 11:06:25 +0100
committerPeter S. Mazinger <ps.m@gmx.net>2011-03-10 11:06:25 +0100
commit14b0a648ca751773fe28dd98f2c031bf6287e52a (patch)
treeaafbd954a75c7ce1767dd77263d9e5123ea9538e /include/ctype.h
parent3e223e6c18912091bf75b77f9c7ae2ded0063037 (diff)
ctype.c, ctype.h: remove commented parts that were banned for removal after 0.9.31
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'include/ctype.h')
-rw-r--r--include/ctype.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/ctype.h b/include/ctype.h
index 6ad17a781..d09f0526b 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -345,21 +345,15 @@ libc_hidden_proto(isascii_l)
# endif
/* Return the lowercase version of C in locale L. */
-/* "ordinary" ctype.h has no __tolower, why we try to have it?
- * remove after 0.9.31
- *extern int __tolower_l (int __c, __locale_t __l) __THROW; */
extern int tolower_l (int __c, __locale_t __l) __THROW;
libc_hidden_proto(tolower_l)
/* Return the uppercase version of C. */
-/*extern int __toupper_l (int __c, __locale_t __l) __THROW; */
extern int toupper_l (int __c, __locale_t __l) __THROW;
# if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
# define tolower_l(c, locale) __tobody(c, tolower_l, (locale)->__ctype_tolower, (c, locale))
# define toupper_l(c, locale) __tobody(c, toupper_l, (locale)->__ctype_toupper, (c, locale))
-/*# define __tolower_l(c, locale) tolower_l((c), (locale)) */
-/*# define __toupper_l(c, locale) toupper_l((c), (locale)) */
# endif /* Optimizing gcc */