Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Dec 2015 02:18:36 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291836 - head/lib/libc/regex/grot
Message-ID:  <201512050218.tB52Ia7r069061@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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]+



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512050218.tB52Ia7r069061>