diff options
Diffstat (limited to 'lib/libc/regex/grot/main.c')
-rw-r--r-- | lib/libc/regex/grot/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/regex/grot/main.c b/lib/libc/regex/grot/main.c index eee541b..5b50671 100644 --- a/lib/libc/regex/grot/main.c +++ b/lib/libc/regex/grot/main.c @@ -9,9 +9,7 @@ __FBSDID("$FreeBSD$"); #include <string.h> #include <unistd.h> -#include "debug.ih" #include "main.ih" -#include "split.ih" char *progname; int debug = 0; @@ -24,6 +22,9 @@ regoff_t startoff = 0; regoff_t endoff = 0; +extern int split(); +extern void regprint(); + /* - main - do the simple case, hand off to regress() for regression */ |