diff options
author | Jim Meyering <jim@meyering.net> | 1999-09-02 21:31:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-09-02 21:31:19 +0000 |
commit | d1b47195344f60453fb008be0a866a303ec04190 (patch) | |
tree | c8d09f062cf35d937a4b2501115d4caae5753c7f /src | |
parent | 81fde1922fd7dbdebecd63fb47ac36435593b23c (diff) | |
download | coreutils-d1b47195344f60453fb008be0a866a303ec04190.tar.xz |
Remove xstrdup declaration.
Diffstat (limited to 'src')
-rw-r--r-- | src/cut.c | 2 | ||||
-rw-r--r-- | src/sort.c | 2 | ||||
-rw-r--r-- | src/tsort.c | 2 |
3 files changed, 0 insertions, 6 deletions
@@ -73,8 +73,6 @@ #define AUTHORS "David Ihnat, David MacKenzie, and Jim Meyering" -char *xstrdup (); - #define FATAL_ERROR(Message) \ do \ { \ diff --git a/src/sort.c b/src/sort.c index 83cba40ef..c37d0c504 100644 --- a/src/sort.c +++ b/src/sort.c @@ -53,8 +53,6 @@ double strtod (); #endif -char *xstrdup (); - /* Undefine, to avoid warning about redefinition on some systems. */ #undef min #define min(a, b) ((a) < (b) ? (a) : (b)) diff --git a/src/tsort.c b/src/tsort.c index f26cfa395..3234a4065 100644 --- a/src/tsort.c +++ b/src/tsort.c @@ -42,8 +42,6 @@ /* Token delimiters when reading from a file. */ #define DELIM " \t\n" -char *xstrdup (); - /* Members of the list of successors. */ struct successor { |