diff options
Diffstat (limited to 'ctype')
-rw-r--r-- | ctype/ctype.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ctype/ctype.c b/ctype/ctype.c index e86c5b03c7..6cb8000771 100644 --- a/ctype/ctype.c +++ b/ctype/ctype.c @@ -45,9 +45,11 @@ tolower (int c) { return c >= -128 && c < 256 ? __ctype_tolower[c] : c; } +libc_hidden_def (tolower) int toupper (int c) { return c >= -128 && c < 256 ? __ctype_toupper[c] : c; } +libc_hidden_def (toupper) |