diff options
Diffstat (limited to 'src/stpcpy.c')
-rw-r--r-- | src/stpcpy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/stpcpy.c b/src/stpcpy.c index 4820c7a..2e4573f 100644 --- a/src/stpcpy.c +++ b/src/stpcpy.c @@ -32,9 +32,7 @@ /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */ char * -__stpcpy (dest, src) - char *dest; - const char *src; +__stpcpy (char *dest, const char *src) { register char *d = dest; register const char *s = src; |