summary refs log tree commit diff
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 9bb43d63ef..81391b777a 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)