diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-10 08:41:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-10 08:41:28 +0000 |
commit | 3617805acbccf2be0619ceecc8915f773e5b1d36 (patch) | |
tree | 4ef66d9f6653bf064ef2dfa28c183d1a64ef41d4 /src | |
parent | 6f45173dec312def72dd96c3cc936b4d1a5c28af (diff) | |
download | coreutils-3617805acbccf2be0619ceecc8915f773e5b1d36.tar.xz |
Remove declaration of xstrdup.
Instead, include "xalloc.h".
Diffstat (limited to 'src')
-rw-r--r-- | src/shred.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shred.c b/src/shred.c index 6ea5417af..f48d7f755 100644 --- a/src/shred.c +++ b/src/shred.c @@ -110,7 +110,7 @@ #include "inttostr.h" #include "quotearg.h" /* For quotearg_colon */ #include "quote.h" /* For quotearg_colon */ -char *xstrdup (char const *); +#include "xalloc.h" #ifndef O_NOCTTY # define O_NOCTTY 0 /* This is a very optional frill */ |