summaryrefslogtreecommitdiff
path: root/string/memcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/memcpy.c')
-rw-r--r--string/memcpy.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/string/memcpy.c b/string/memcpy.c
index 4a585086fc..e4aa4dd208 100644
--- a/string/memcpy.c
+++ b/string/memcpy.c
@@ -1,6 +1,6 @@
/* Copy memory to memory until the specified number of bytes
has been copied. Overlap is NOT handled correctly.
- 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.
Contributed by Torbjorn Granlund (tege@sics.se).
@@ -24,10 +24,7 @@
#undef memcpy
void *
-memcpy (dstpp, srcpp, len)
- void *dstpp;
- const void *srcpp;
- size_t len;
+memcpy (void *dstpp, const void *srcpp, size_t len)
{
unsigned long int dstp = (long int) dstpp;
unsigned long int srcp = (long int) srcpp;