diff options
Diffstat (limited to 'string/memccpy.c')
-rw-r--r-- | string/memccpy.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/string/memccpy.c b/string/memccpy.c index 793f68ee1c..70ee2ae42e 100644 --- a/string/memccpy.c +++ b/string/memccpy.c @@ -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; |