summaryrefslogtreecommitdiff
path: root/src/tac.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-09-14 16:24:17 +0000
committerJim Meyering <jim@meyering.net>1997-09-14 16:24:17 +0000
commitcb628f9be376a02f46e4a1401feb12784c45b598 (patch)
tree21dbb00aeed2abb8faa1ee0e83f249dcdfb7aa36 /src/tac.c
parentcc76a774e3e4ade1461141828b1c43f03b8e1d05 (diff)
downloadcoreutils-cb628f9be376a02f46e4a1401feb12784c45b598.tar.xz
Don't include signal.h.
Diffstat (limited to 'src/tac.c')
-rw-r--r--src/tac.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tac.c b/src/tac.c
index 07fb085ee..d3da8f5ba 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -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;