summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-18 23:07:26 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-18 23:07:26 +0200
commit93f8a2e834eed69aff7ef3be8c2baba14bab0658 (patch)
tree347b5239f26d3b5f526fffcf7afe151e83124a61 /include
parent21730caa6647f645974e132ca8afec79b4eeab2b (diff)
convert // comments to /**/; remove empty #if/#endif pairs. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/ctype.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ctype.h b/include/ctype.h
index 0cae94101..599054e4f 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -341,22 +341,22 @@ 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;
+/* "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; */
extern int toupper_l (int __c, __locale_t __l) __THROW;
libc_hidden_proto(toupper_l)
# 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))
+/*# define __tolower_l(c, locale) tolower_l((c), (locale)) */
+/*# define __toupper_l(c, locale) toupper_l((c), (locale)) */
# endif /* Optimizing gcc */