aboutsummaryrefslogtreecommitdiff
path: root/wcsmbs/wcspbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wcspbrk.c')
-rw-r--r--wcsmbs/wcspbrk.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/wcsmbs/wcspbrk.c b/wcsmbs/wcspbrk.c
index 9bb43d6..81391b7 100644
--- a/wcsmbs/wcspbrk.c
+++ b/wcsmbs/wcspbrk.c
@@ -24,9 +24,7 @@
/* Find the first occurrence in WCS of any wide-character in ACCEPT. */
wchar_t *
-wcspbrk (wcs, accept)
- const wchar_t *wcs;
- const wchar_t *accept;
+wcspbrk (const wchar_t *wcs, const wchar_t *accept)
{
while (*wcs != L'\0')
if (wcschr (accept, *wcs) == NULL)