From 7d60769bead4b89a096e10bacbb503702ea6e44c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 7 Dec 1998 03:12:10 +0000 Subject: ansideclify --- lib/stpcpy.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/stpcpy.c') 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; -- cgit v1.2.3-54-g00ecf