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/split.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/split.c')
-rw-r--r-- | lib/libc/regex/grot/split.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/regex/grot/split.c b/lib/libc/regex/grot/split.c index 07ab8f1..c5d5264 100644 --- a/lib/libc/regex/grot/split.c +++ b/lib/libc/regex/grot/split.c @@ -4,6 +4,8 @@ __FBSDID("$FreeBSD$"); #include <stdio.h> #include <string.h> +#include "split.ih" + /* - split - divide a string into fields, like awk split() == int split(char *string, char *fields[], int nfields, char *sep); |