]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - ctype/ctype.c
Use libc_hidden_* for tolower, toupper (bug 15105).
[thirdparty/glibc.git] / ctype / ctype.c
index e86c5b03c7f4212f5fc41495db82ef7ec9c4dce5..6cb800077113a0bf8a58aff0c77df9bc7c0195f6 100644 (file)
@@ -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)