about summary refs log tree commit diff
path: root/wcsmbs/wcschrnul.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wcschrnul.c')
-rw-r--r--wcsmbs/wcschrnul.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/wcsmbs/wcschrnul.c b/wcsmbs/wcschrnul.c
index 97ef3b9dfd..418725f9db 100644
--- a/wcsmbs/wcschrnul.c
+++ b/wcsmbs/wcschrnul.c
@@ -23,9 +23,7 @@
 
 /* Find the first occurrence of WC in WCS.  */
 wchar_t *
-__wcschrnul (wcs, wc)
-     const wchar_t *wcs;
-     const wchar_t wc;
+__wcschrnul (const wchar_t *wcs, const wchar_t wc)
 {
   while (*wcs != L'\0')
     if (*wcs == wc)