svn commit: r291836 - head/lib/libc/regex/grot

Garrett Cooper ngie at FreeBSD.org
Sat Dec 5 02:18:37 UTC 2015


Author: ngie
Date: Sat Dec  5 02:18:36 2015
New Revision: 291836
URL: https://svnweb.freebsd.org/changeset/base/291836

Log:
  Use `==` instead of `=` in the function comment above split(..) so mkh -p
  exposes split(..).
  
  MFC after: 1 week
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/lib/libc/regex/grot/split.c

Modified: head/lib/libc/regex/grot/split.c
==============================================================================
--- head/lib/libc/regex/grot/split.c	Sat Dec  5 02:07:55 2015	(r291835)
+++ head/lib/libc/regex/grot/split.c	Sat Dec  5 02:18:36 2015	(r291836)
@@ -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]+


More information about the svn-src-all mailing list