aboutsummaryrefslogtreecommitdiff
path: root/debug/strcat_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/strcat_chk.c')
-rw-r--r--debug/strcat_chk.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/debug/strcat_chk.c b/debug/strcat_chk.c
index 8d7359f..3efca27 100644
--- a/debug/strcat_chk.c
+++ b/debug/strcat_chk.c
@@ -21,10 +21,7 @@
/* Append SRC on the end of DEST. */
char *
-__strcat_chk (dest, src, destlen)
- char *dest;
- const char *src;
- size_t destlen;
+__strcat_chk (char *dest, const char *src, size_t destlen)
{
char *s1 = dest;
const char *s2 = src;