diff options
| author | Jim Meyering <jim@meyering.net> | 1998-12-07 03:12:10 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1998-12-07 03:12:10 +0000 |
| commit | 7d60769bead4b89a096e10bacbb503702ea6e44c (patch) | |
| tree | c03ba9bef1c0339b2f4cbe993acff983cddb2146 /lib/stpcpy.c | |
| parent | *** empty log message *** (diff) | |
| download | coreutils-7d60769bead4b89a096e10bacbb503702ea6e44c.tar.gz coreutils-7d60769bead4b89a096e10bacbb503702ea6e44c.zip | |
ansideclify
Diffstat (limited to 'lib/stpcpy.c')
| -rw-r--r-- | lib/stpcpy.c | 4 |
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; |
