summaryrefslogtreecommitdiff
path: root/include/wctype.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-06 23:38:01 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-06 23:38:01 +0000
commit13ece8977b7c7ddc97f906a6a374816f254c50f2 (patch)
tree82a01b6177fc419e40097166469cab3e90acf05a /include/wctype.h
parent01cec3edaa628d855d8b56b750b36035127ee681 (diff)
Update.
* include/wctype.h: Define iswalnum with libc_hidden_proto. * include/signal.h: Define raise with libc_hidden_proto. * sysdeps/unix/sysv/linux/fexecve.c (fexecve): Use __snprintf and __execve instead of snprintf and execve.
Diffstat (limited to 'include/wctype.h')
-rw-r--r--include/wctype.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wctype.h b/include/wctype.h
index 9382f32ea8..f52f0a3f30 100644
--- a/include/wctype.h
+++ b/include/wctype.h
@@ -17,6 +17,7 @@ typedef unsigned int wint_t;
these as macros and thus we couldn't add libc_hidden_proto. */
extern int iswalpha (wint_t __wc);
+extern int iswalnum (wint_t __wc);
extern int iswdigit (wint_t __wc);
extern int iswlower (wint_t __wc);
extern int iswspace (wint_t __wc);
@@ -25,6 +26,7 @@ extern wint_t towlower (wint_t __wc);
extern wint_t towupper (wint_t __wc);
libc_hidden_proto (iswalpha)
+libc_hidden_proto (iswalnum)
libc_hidden_proto (iswdigit)
libc_hidden_proto (iswlower)
libc_hidden_proto (iswspace)