summaryrefslogtreecommitdiff
path: root/lib/strdup.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-12-07 03:12:10 +0000
committerJim Meyering <jim@meyering.net>1998-12-07 03:12:10 +0000
commit7d60769bead4b89a096e10bacbb503702ea6e44c (patch)
treec03ba9bef1c0339b2f4cbe993acff983cddb2146 /lib/strdup.c
parent604b3b397d5aa9ee10749f582fd67f1d2ae91a7f (diff)
downloadcoreutils-7d60769bead4b89a096e10bacbb503702ea6e44c.tar.xz
ansideclify
Diffstat (limited to 'lib/strdup.c')
-rw-r--r--lib/strdup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/strdup.c b/lib/strdup.c
index 4f6bb83e5..c0b05e2d1 100644
--- a/lib/strdup.c
+++ b/lib/strdup.c
@@ -31,8 +31,7 @@ char *strcpy ();
or 0 if out of memory. */
char *
-strdup (str)
- const char *str;
+strdup (const char *str)
{
char *newstr;