diff options
author | Jim Meyering <jim@meyering.net> | 1994-12-16 05:41:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-12-16 05:41:05 +0000 |
commit | 8d6c6946ddc86f8af7c2cad20bc4209ee5b3f88b (patch) | |
tree | dd8c1bc685db44816d2aff94074544262ea1e3ce /src/csplit.c | |
parent | 029fcaa9139e51beb6afa0b96670c684260e8bfa (diff) | |
download | coreutils-8d6c6946ddc86f8af7c2cad20bc4209ee5b3f88b.tar.xz |
Include "error.h" instead of simply declaring `void error ();'.
Diffstat (limited to 'src/csplit.c')
-rw-r--r-- | src/csplit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/csplit.c b/src/csplit.c index 725d3c264..a51ad8f3b 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -30,6 +30,7 @@ #include "regex.h" #include "system.h" #include "version.h" +#include "error.h" #ifdef STDC_HEADERS #include <stdlib.h> @@ -42,10 +43,8 @@ char *realloc (); #define MAX(a,b) (((a) > (b)) ? (a) : (b)) #endif -void error (); int safe_read (); - static char *xrealloc (); static char *xmalloc (); static void cleanup (); |