From 06d2ea67281a4f7640db2bee3afad963c8d74cb7 Mon Sep 17 00:00:00 2001 From: ngie Date: Sat, 5 Dec 2015 02:18:36 +0000 Subject: [PATCH] Use `==` instead of `=` in the function comment above split(..) so mkh -p exposes split(..). MFC after: 1 week Sponsored by: EMC / Isilon Storage Division --- lib/libc/regex/grot/split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/regex/grot/split.c b/lib/libc/regex/grot/split.c index 90739d1a6a66..07ab8f1cdc28 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]+