summaryrefslogtreecommitdiff
path: root/src/comm.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-12-16 05:41:05 +0000
committerJim Meyering <jim@meyering.net>1994-12-16 05:41:05 +0000
commit8d6c6946ddc86f8af7c2cad20bc4209ee5b3f88b (patch)
treedd8c1bc685db44816d2aff94074544262ea1e3ce /src/comm.c
parent029fcaa9139e51beb6afa0b96670c684260e8bfa (diff)
downloadcoreutils-8d6c6946ddc86f8af7c2cad20bc4209ee5b3f88b.tar.xz
Include "error.h" instead of simply declaring `void error ();'.
Diffstat (limited to 'src/comm.c')
-rw-r--r--src/comm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comm.c b/src/comm.c
index 3ed34cdf2..93e38f4a4 100644
--- a/src/comm.c
+++ b/src/comm.c
@@ -25,6 +25,7 @@
#include "system.h"
#include "linebuffer.h"
#include "version.h"
+#include "error.h"
#define min(x, y) ((x) < (y) ? (x) : (y))
@@ -53,7 +54,6 @@ static struct option const long_options[] =
{0, 0, 0, 0}
};
-void error ();
static int compare_files ();
static void writeline ();
static void usage ();