diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-03 17:15:15 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-03 17:15:15 +0000 |
commit | 16fbf62c2044e872785f871ab5d901e30e64932e (patch) | |
tree | 5342e3227fa9e3817869d16f94afce0c2283cb6c /include | |
parent | fbf868b243b07b0e91e8da11086bc172d7c146da (diff) |
Add __toupper, remove unneeded undefs for tolower
Diffstat (limited to 'include')
-rw-r--r-- | include/libc-internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libc-internal.h b/include/libc-internal.h index 06e55fd28..c85629042 100644 --- a/include/libc-internal.h +++ b/include/libc-internal.h @@ -263,6 +263,7 @@ extern char *__glibc_strerror_r_internal (int __errnum, char *__buf, size_t __bu /* ctype.h */ extern int __tolower (int __c) __THROW attribute_hidden; +extern int __toupper (int __c) __THROW attribute_hidden; #ifdef __UCLIBC_HAS_WCHAR__ /* wchar.h */ |