diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-05 02:18:36 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-05 02:18:36 +0000 |
commit | 06d2ea67281a4f7640db2bee3afad963c8d74cb7 (patch) | |
tree | b9d1b327ae86eb7d50384c640a6f2eda21a41766 /lib/libc | |
parent | ac2d4b2c97dd73f41094adb476fc3f8a5b0118d3 (diff) | |
download | FreeBSD-src-06d2ea67281a4f7640db2bee3afad963c8d74cb7.zip FreeBSD-src-06d2ea67281a4f7640db2bee3afad963c8d74cb7.tar.gz |
Use `==` instead of `=` in the function comment above split(..) so mkh -p
exposes split(..).
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/regex/grot/split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/regex/grot/split.c b/lib/libc/regex/grot/split.c index 90739d1..07ab8f1 100644 --- a/lib/libc/regex/grot/split.c +++ b/lib/libc/regex/grot/split.c @@ -6,7 +6,7 @@ __FBSDID("$FreeBSD$"); /* - split - divide a string into fields, like awk split() - = int split(char *string, char *fields[], int nfields, char *sep); + == int split(char *string, char *fields[], int nfields, char *sep); - fields: list is not NULL-terminated - nfields: number of entries available in fields[] - sep: "" white, "c" single char, "ab" [ab]+ |