summaryrefslogtreecommitdiff
path: root/include/wctype.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-10 13:15:10 +0100
committerPeter S. Mazinger <ps.m@gmx.net>2011-03-10 13:15:10 +0100
commit1b3f056d4aa2726f872f2ee85f3f391a784e19e4 (patch)
treedbf08c705f0dd71e282d0d5684c17b62be747990 /include/wctype.h
parent6fb9aa575e35f59c224acd48006b9c7a7063099c (diff)
wctype.h: fix libc_hidden_proto for iswupper and add it for iswspace
Old typo, became visible due to other changes. Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'include/wctype.h')
-rw-r--r--include/wctype.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wctype.h b/include/wctype.h
index 79f36eb8c..3ae682191 100644
--- a/include/wctype.h
+++ b/include/wctype.h
@@ -157,12 +157,13 @@ extern int iswpunct (wint_t __wc) __THROW;
set of wide characters for which none of `iswalnum', `iswgraph', or
`iswpunct' is true. */
extern int iswspace (wint_t __wc) __THROW;
+libc_hidden_proto(iswspace)
/* Test for any wide character that corresponds to an uppercase letter
or is one of a locale-specific set of wide character for which none
of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true. */
extern int iswupper (wint_t __wc) __THROW;
-libc_hidden_proto(iswspace)
+libc_hidden_proto(iswupper)
/* Test for any wide character that corresponds to a hexadecimal-digit
character equivalent to that performed be the functions described