summaryrefslogtreecommitdiff
path: root/debug/strcat_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/strcat_chk.c')
-rw-r--r--debug/strcat_chk.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/debug/strcat_chk.c b/debug/strcat_chk.c
index 8d7359faca..518bf0949f 100644
--- a/debug/strcat_chk.c
+++ b/debug/strcat_chk.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -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;