X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstpcpy.c;h=a01636cd1c603b35fd789172e87f10daf173fac5;hb=cf42d3e5e80be6bf7093a3ca9be0d04033eaf527;hp=380e65f7dcc231845d68186a93ccaf724cd62e1c;hpb=84101579151497b775371eb56e5ce7a8d76e9b74;p=gnulib.git 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;