summaryrefslogtreecommitdiff
path: root/string/memccpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/memccpy.c')
-rw-r--r--string/memccpy.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/string/memccpy.c b/string/memccpy.c
index 793f68ee1c..d9ed6975ef 100644
--- a/string/memccpy.c
+++ b/string/memccpy.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2014 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2015 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
@@ -24,11 +24,7 @@
Return the position in DEST one byte past where C was copied, or
NULL if C was not found in the first N bytes of SRC. */
void *
-__memccpy (dest, src, c, n)
- void *dest;
- const void *src;
- int c;
- size_t n;
+__memccpy (void *dest, const void *src, int c, size_t n)
{
const char *s = src;
char *d = dest;