Include "error.h" instead of simply declaring `void error ();'.
authorJim Meyering <jim@meyering.net>
Fri, 16 Dec 1994 05:42:47 +0000 (05:42 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 16 Dec 1994 05:42:47 +0000 (05:42 +0000)
14 files changed:
src/fold.c
src/head.c
src/join.c
src/nl.c
src/paste.c
src/pr.c
src/sort.c
src/split.c
src/sum.c
src/tac.c
src/tr.c
src/unexpand.c
src/uniq.c
src/wc.c

index 307a7a941fe44bf4ccc6eb861fcb29e804be4349..d6c07d6151e667202cfda3daaed709a8ae1a92c8 100644 (file)
 #include <sys/types.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 char *xrealloc ();
 char *xmalloc ();
-void error ();
 
 /* The name this program was run with. */
 char *program_name;
index 5b69dcda956a204d7b7395e49f75f1ebb01c7829..53c21accd65e4f389492d783c0f7cbb6182eec3a 100644 (file)
@@ -40,6 +40,7 @@
 #include <sys/types.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 /* Number of lines/chars/blocks to head. */
 #define DEFAULT_NUMBER 10
@@ -60,7 +61,6 @@ enum header_mode
   multiple_files, always, never
 };
 
-void error ();
 int safe_read ();
 
 static int head ();
index a09ef631d8558c22e4ae5cdef6d2a48ba49f7afa..f6ad7a4fa00d65e14f857471288273b273424e34 100644 (file)
 #include "system.h"
 #include "version.h"
 #include "long-options.h"
+#include "error.h"
 
 char *xmalloc ();
 char *xrealloc ();
-void error ();
 static void usage ();
 
 #define min(A, B) ((A) < (B) ? (A) : (B))
index ca98a2b56577fa9cd32b9a8321c60ac7ba34c727..cdfbd8ce1f17ab449b7cbc97862403d5ad29fc55 100644 (file)
--- a/src/nl.c
+++ b/src/nl.c
@@ -27,6 +27,7 @@
 #include "linebuffer.h"
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 #ifndef TRUE
 #define TRUE   1
@@ -53,7 +54,6 @@ enum section
 
 char *xmalloc ();
 char *xrealloc ();
-void error ();
 
 static enum section check_section ();
 static int build_type_arg ();
index 33a134f73d80fd097fbafc67f62099d015679b61..d4891362794ad65a20727a552e60ca249400acf6 100644 (file)
@@ -45,8 +45,8 @@
 #include <sys/types.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
-void error ();
 char *xmalloc ();
 char *xrealloc ();
 
index 89c84975c7bb04271bf0d7c26680e44730e1ed52..4d6ceafd4eb9ab8aef0ed90178450d5fb8fe4769 100644 (file)
--- a/src/pr.c
+++ b/src/pr.c
 #include <time.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 char *xmalloc ();
 char *xrealloc ();
-void error ();
 
 static int char_to_clump ();
 static int read_line ();
index 94c9408dbaf35551166befb7185c532c9de23838..97cc0840bb209298f40c3031da3c90418b196b53 100644 (file)
@@ -31,6 +31,7 @@
 #include "version.h"
 #include "long-options.h"
 #include "safe-stat.h"
+#include "error.h"
 
 #ifdef _POSIX_VERSION
 #include <limits.h>
@@ -45,7 +46,6 @@ char *realloc ();
 void free ();
 #endif
 
-void error ();
 static void usage ();
 
 #define min(a, b) ((a) < (b) ? (a) : (b))
index 3dcfaa0afcad3a716013952924545ce2dbd86aa4..eb3bd15aa6a733e1fc525d1959c1dbaa67f85625 100644 (file)
@@ -28,9 +28,9 @@
 #include <sys/types.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 char *xmalloc ();
-void error ();
 int full_write ();
 int safe_read ();
 
index 6c68c0b1a024ac6b2b5e6022f2345e6bedbc27d6..2a77eef27edac9a2fbb0a6e42f519bd879398144 100644 (file)
--- a/src/sum.c
+++ b/src/sum.c
 #include <getopt.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 static int bsd_sum_file ();
 static int sysv_sum_file ();
 
-void error ();
 int safe_read ();
 
 /* The name this program was run with. */
index 40e1ecb2a0527fe3cb29cf3cab97027eaba475d1..b136298404ccdcb02c72445658a5ae76e352b8fd 100644 (file)
--- a/src/tac.c
+++ b/src/tac.c
@@ -44,6 +44,7 @@ tac -r -s '.\|
 #include <regex.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 #ifndef STDC_HEADERS
 char *malloc ();
@@ -68,7 +69,6 @@ static void output ();
 static void save_stdin ();
 static void xwrite ();
 
-void error ();
 int full_write ();
 int safe_read ();
 
index b6b62e4f5efe68d24a1d2b911ac0dcc15e6e64f4..3dea1d3a3ae28b4b38dc144a9aef56bdc7dcd595 100644 (file)
--- a/src/tr.c
+++ b/src/tr.c
@@ -30,6 +30,7 @@
 
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 #ifndef ULONG_MAX
 #define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
@@ -196,7 +197,6 @@ struct Spec_list
 
 char *xmalloc ();
 char *stpcpy ();
-void error ();
 int safe_read ();
 
 /* The name by which this program was run.  */
index 97d3569c322df654b1af1dccbfc0d1f87d9880b7..d3f8125ba658eafef29a664297b926dadd1a618c 100644 (file)
@@ -45,6 +45,7 @@
 #include <sys/types.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 /* The number of bytes added at a time to the amount of memory
    allocated for the output line. */
@@ -56,7 +57,6 @@
 
 char *xmalloc ();
 char *xrealloc ();
-void error ();
 
 static FILE *next_file ();
 static void add_tabstop ();
index c4a05edbb88de5ddd9922a2b4978dfe2cb843033..0142c51c97c151108ceb6cd5ea464c0a52702a3a 100644 (file)
 #include "system.h"
 #include "linebuffer.h"
 #include "version.h"
+#include "error.h"
 
 #define min(x, y) ((x) < (y) ? (x) : (y))
 
-void error ();
-
 static char *find_field ();
 static int different ();
 static void check_file ();
index 62da906466a47e6ac31f7235582acde9b4f6c845..7086c96c00d1cc2280d91e9b3e1ed6dae33999c3 100644 (file)
--- a/src/wc.c
+++ b/src/wc.c
 #include <sys/types.h>
 #include "system.h"
 #include "version.h"
+#include "error.h"
 
 /* Size of atomic reads. */
 #define BUFFER_SIZE (16 * 1024)
 
-void error ();
 int safe_read ();
 
 static void wc ();