summaryrefslogtreecommitdiff
path: root/debug/memset_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/memset_chk.c')
-rw-r--r--debug/memset_chk.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/debug/memset_chk.c b/debug/memset_chk.c
index 293172f920..ef437eff73 100644
--- a/debug/memset_chk.c
+++ b/debug/memset_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
@@ -19,11 +19,7 @@
#include <memcopy.h>
void *
-__memset_chk (dstpp, c, len, dstlen)
- void *dstpp;
- int c;
- size_t len;
- size_t dstlen;
+__memset_chk (void *dstpp, int c, size_t len, size_t dstlen)
{
if (__glibc_unlikely (dstlen < len))
__chk_fail ();