]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - debug/strncpy_chk.c
Convert 703 function definitions to prototype style.
[thirdparty/glibc.git] / debug / strncpy_chk.c
index 98e703da5e91e170065223bd4e7b58bad7a18041..02b866c87be36acc6670a4a8f80c87e70075a31a 100644 (file)
 
 
 char *
-__strncpy_chk (s1, s2, n, s1len)
-     char *s1;
-     const char *s2;
-     size_t n;
-     size_t s1len;
+__strncpy_chk (char *s1, const char *s2, size_t n, size_t s1len)
 {
   if (__builtin_expect (s1len < n, 0))
     __chk_fail ();