diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-13 21:15:03 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-13 21:15:03 +0000 |
commit | e999176b6bf8f524f072ecbc48c8e26a3cbe6778 (patch) | |
tree | 3705cab50e561b728e85c49dd6abc99e53d97881 /lib/libc/regex/grot/main.c | |
parent | 1299d77d5065856f8bbd0aff31b276bf2aaba48a (diff) | |
download | FreeBSD-src-e999176b6bf8f524f072ecbc48c8e26a3cbe6778.zip FreeBSD-src-e999176b6bf8f524f072ecbc48c8e26a3cbe6778.tar.gz |
MFC r291837:
split.ih:
- Create automatically generated include header for split.c
main.c:
- Use function definitions from debug.ih and split.ih instead of externs
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'lib/libc/regex/grot/main.c')
-rw-r--r-- | lib/libc/regex/grot/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/regex/grot/main.c b/lib/libc/regex/grot/main.c index 5b50671..eee541b 100644 --- a/lib/libc/regex/grot/main.c +++ b/lib/libc/regex/grot/main.c @@ -9,7 +9,9 @@ __FBSDID("$FreeBSD$"); #include <string.h> #include <unistd.h> +#include "debug.ih" #include "main.ih" +#include "split.ih" char *progname; int debug = 0; @@ -22,9 +24,6 @@ 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 */ |