summaryrefslogtreecommitdiff
path: root/lib/stpcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stpcpy.c')
-rw-r--r--lib/stpcpy.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/stpcpy.c b/lib/stpcpy.c
index 380e65f7d..a01636cd1 100644
--- a/lib/stpcpy.c
+++ b/lib/stpcpy.c
@@ -34,9 +34,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;