From: Jim Meyering Date: Sun, 14 Sep 1997 16:24:17 +0000 (+0000) Subject: Don't include signal.h. X-Git-Tag: TEXTUTILS-1_22a~59 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=cb628f9be376a02f46e4a1401feb12784c45b598;p=thirdparty%2Fcoreutils.git Don't include signal.h. --- diff --git a/src/tac.c b/src/tac.c index 07fb085ee3..d3da8f5baa 100644 --- a/src/tac.c +++ b/src/tac.c @@ -40,7 +40,6 @@ tac -r -s '.\| #include #include #include -#include #if WITH_REGEX # include #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;