diff options
author | Jim Meyering <jim@meyering.net> | 1998-04-12 19:56:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-04-12 19:56:25 +0000 |
commit | 48990a90787544be6db7510be35061dffab774ab (patch) | |
tree | 33c0d45a4123849b9179eba796cbffd345982e1d | |
parent | 69a3ee0b497c88a8521f48dca727f5a7cfd27a31 (diff) | |
download | coreutils-48990a90787544be6db7510be35061dffab774ab.tar.xz |
Include safe-read.h instead of merely declaring safe_read.
-rw-r--r-- | src/tail.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tail.c b/src/tail.c index b2885b9c9..1b1ce863f 100644 --- a/src/tail.c +++ b/src/tail.c @@ -53,6 +53,7 @@ #include "system.h" #include "xstrtoul.h" #include "error.h" +#include "safe-read.h" #ifndef OFF_T_MIN # define OFF_T_MIN TYPE_MINIMUM (off_t) @@ -158,8 +159,6 @@ enum header_mode /* FIXME: rename, document, and use this -- add option */ static unsigned long max_no_change_count = 5; -int safe_read (); - /* The name this program was run with. */ char *program_name; |