summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-12-20 05:26:44 +0000
committerJim Meyering <jim@meyering.net>1994-12-20 05:26:44 +0000
commita9f1783e20a09e761fa29faec3f381978043cf88 (patch)
tree2ff01e7f6d7daa09d1b93374b0ccf86d649f120b /src/expr.c
parent6bb619d33cebde41f996b8fade52cbab91de6a14 (diff)
downloadcoreutils-a9f1783e20a09e761fa29faec3f381978043cf88.tar.xz
* src/*.c: Include "error.h" instead of simply declaring
`void error ();'.
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index a98cc21f4..f971ce36d 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -36,6 +36,7 @@
#include "system.h"
#include "version.h"
#include "long-options.h"
+#include "error.h"
#define NEW(type) ((type *) xmalloc (sizeof (type)))
#define OLD(x) free ((char *) x)
@@ -66,7 +67,6 @@ static char **args;
/* The name this program was run with. */
char *program_name;
-void error ();
char *xstrdup ();
char *strstr ();
char *xmalloc ();