about summary refs log tree commit diff
path: root/debug/memcpy_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/memcpy_chk.c')
-rw-r--r--debug/memcpy_chk.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/debug/memcpy_chk.c b/debug/memcpy_chk.c
index b240bf560f..a08eb314f4 100644
--- a/debug/memcpy_chk.c
+++ b/debug/memcpy_chk.c
@@ -22,11 +22,7 @@
 #include <memcopy.h>
 
 void *
-__memcpy_chk (dstpp, srcpp, len, dstlen)
-     void *dstpp;
-     const void *srcpp;
-     size_t len;
-     size_t dstlen;
+__memcpy_chk (void *dstpp, const void *srcpp, size_t len, size_t dstlen)
 {
   if (__glibc_unlikely (dstlen < len))
     __chk_fail ();