]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - wcsmbs/wcschrnul.c
Convert 703 function definitions to prototype style.
[thirdparty/glibc.git] / wcsmbs / wcschrnul.c
index 97ef3b9dfd0c87af466d3d8b2b481f1cf33f99d0..418725f9db7155eb343c1b2f8c80164c4f7b6baa 100644 (file)
@@ -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)