diff options
author | Jim Meyering <jim@meyering.net> | 1997-09-14 16:24:17 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-09-14 16:24:17 +0000 |
commit | cb628f9be376a02f46e4a1401feb12784c45b598 (patch) | |
tree | 21dbb00aeed2abb8faa1ee0e83f249dcdfb7aa36 /src | |
parent | cc76a774e3e4ade1461141828b1c43f03b8e1d05 (diff) | |
download | coreutils-cb628f9be376a02f46e4a1401feb12784c45b598.tar.xz |
Don't include signal.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/tac.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -40,7 +40,6 @@ tac -r -s '.\| #include <stdio.h> #include <getopt.h> #include <sys/types.h> -#include <signal.h> #if WITH_REGEX # include <regex.h> #else @@ -55,7 +54,7 @@ char *realloc (); #endif #ifndef DEFAULT_TMPDIR -#define DEFAULT_TMPDIR "/tmp" +# define DEFAULT_TMPDIR "/tmp" #endif /* The number of bytes per atomic read. */ @@ -455,7 +454,6 @@ save_stdin (FILE **g_tmp, char **g_tempfile) static int tac_stdin (void) { - /* Previous values of signal handlers. */ int errors; struct stat stats; |