svn commit: r251069 - in head/lib/libc: stdlib string

Ed Maste emaste at FreeBSD.org
Tue May 28 20:58:00 UTC 2013


Author: emaste
Date: Tue May 28 20:57:40 2013
New Revision: 251069
URL: http://svnweb.freebsd.org/changeset/base/251069

Log:
  Renumber clauses to reduce diffs to other versions
  
  NetBSD, OpenBSD, and Android's Bionic number the clauses 1 through 3,
  so follow suit to make comparison easier.

Modified:
  head/lib/libc/stdlib/abort.3
  head/lib/libc/stdlib/abort.c
  head/lib/libc/stdlib/abs.3
  head/lib/libc/stdlib/abs.c
  head/lib/libc/stdlib/alloca.3
  head/lib/libc/stdlib/atexit.3
  head/lib/libc/stdlib/atexit.c
  head/lib/libc/stdlib/atexit.h
  head/lib/libc/stdlib/atof.3
  head/lib/libc/stdlib/atof.c
  head/lib/libc/stdlib/atoi.3
  head/lib/libc/stdlib/atoi.c
  head/lib/libc/stdlib/atol.3
  head/lib/libc/stdlib/atol.c
  head/lib/libc/stdlib/atoll.c
  head/lib/libc/stdlib/bsearch.3
  head/lib/libc/stdlib/bsearch.c
  head/lib/libc/stdlib/div.3
  head/lib/libc/stdlib/div.c
  head/lib/libc/stdlib/exit.3
  head/lib/libc/stdlib/exit.c
  head/lib/libc/stdlib/getenv.3
  head/lib/libc/stdlib/getopt.3
  head/lib/libc/stdlib/getopt.c
  head/lib/libc/stdlib/getsubopt.3
  head/lib/libc/stdlib/getsubopt.c
  head/lib/libc/stdlib/heapsort.c
  head/lib/libc/string/bcmp.3
  head/lib/libc/string/bcmp.c
  head/lib/libc/string/bcopy.3
  head/lib/libc/string/bcopy.c
  head/lib/libc/string/bstring.3
  head/lib/libc/string/bzero.3
  head/lib/libc/string/ffs.3
  head/lib/libc/string/ffs.c
  head/lib/libc/string/ffsl.c
  head/lib/libc/string/ffsll.c
  head/lib/libc/string/fls.c
  head/lib/libc/string/flsl.c
  head/lib/libc/string/flsll.c
  head/lib/libc/string/index.3
  head/lib/libc/string/memccpy.3
  head/lib/libc/string/memccpy.c
  head/lib/libc/string/memchr.3
  head/lib/libc/string/memchr.c
  head/lib/libc/string/memcmp.3
  head/lib/libc/string/memcmp.c
  head/lib/libc/string/memcpy.3
  head/lib/libc/string/memmove.3
  head/lib/libc/string/memset.3
  head/lib/libc/string/memset.c
  head/lib/libc/string/strcasecmp.3
  head/lib/libc/string/strcasecmp.c
  head/lib/libc/string/strcasestr.c
  head/lib/libc/string/strcat.3
  head/lib/libc/string/strcat.c
  head/lib/libc/string/strchr.3
  head/lib/libc/string/strchr.c
  head/lib/libc/string/strcmp.3
  head/lib/libc/string/strcmp.c
  head/lib/libc/string/strcoll.3
  head/lib/libc/string/strcpy.3
  head/lib/libc/string/strcpy.c
  head/lib/libc/string/strcspn.3
  head/lib/libc/string/strdup.3
  head/lib/libc/string/strdup.c
  head/lib/libc/string/strerror.3
  head/lib/libc/string/strerror.c
  head/lib/libc/string/string.3
  head/lib/libc/string/strlen.3
  head/lib/libc/string/strmode.3
  head/lib/libc/string/strmode.c
  head/lib/libc/string/strncat.c
  head/lib/libc/string/strncmp.c
  head/lib/libc/string/strncpy.c
  head/lib/libc/string/strndup.c
  head/lib/libc/string/strnstr.c
  head/lib/libc/string/strpbrk.3
  head/lib/libc/string/strpbrk.c
  head/lib/libc/string/strrchr.c
  head/lib/libc/string/strsep.3
  head/lib/libc/string/strsep.c
  head/lib/libc/string/strsignal.c
  head/lib/libc/string/strspn.3
  head/lib/libc/string/strstr.3
  head/lib/libc/string/strstr.c
  head/lib/libc/string/strtok.3
  head/lib/libc/string/strtok.c
  head/lib/libc/string/strxfrm.3
  head/lib/libc/string/swab.3
  head/lib/libc/string/swab.c
  head/lib/libc/string/wcscmp.c
  head/lib/libc/string/wcscoll.3
  head/lib/libc/string/wcsncmp.c
  head/lib/libc/string/wcsncpy.c
  head/lib/libc/string/wcsstr.c
  head/lib/libc/string/wcstok.c
  head/lib/libc/string/wcswidth.c
  head/lib/libc/string/wcsxfrm.3
  head/lib/libc/string/wmemchr.3

Modified: head/lib/libc/stdlib/abort.3
==============================================================================
--- head/lib/libc/stdlib/abort.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/abort.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/abort.c
==============================================================================
--- head/lib/libc/stdlib/abort.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/abort.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/abs.3
==============================================================================
--- head/lib/libc/stdlib/abs.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/abs.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/abs.c
==============================================================================
--- head/lib/libc/stdlib/abs.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/abs.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/alloca.3
==============================================================================
--- head/lib/libc/stdlib/alloca.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/alloca.3	Tue May 28 20:57:40 2013	(r251069)
@@ -9,7 +9,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/atexit.3
==============================================================================
--- head/lib/libc/stdlib/atexit.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atexit.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/atexit.c
==============================================================================
--- head/lib/libc/stdlib/atexit.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atexit.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/atexit.h
==============================================================================
--- head/lib/libc/stdlib/atexit.h	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atexit.h	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/atof.3
==============================================================================
--- head/lib/libc/stdlib/atof.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atof.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/atof.c
==============================================================================
--- head/lib/libc/stdlib/atof.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atof.c	Tue May 28 20:57:40 2013	(r251069)
@@ -15,7 +15,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/atoi.3
==============================================================================
--- head/lib/libc/stdlib/atoi.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atoi.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/atoi.c
==============================================================================
--- head/lib/libc/stdlib/atoi.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atoi.c	Tue May 28 20:57:40 2013	(r251069)
@@ -15,7 +15,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/atol.3
==============================================================================
--- head/lib/libc/stdlib/atol.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atol.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/atol.c
==============================================================================
--- head/lib/libc/stdlib/atol.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atol.c	Tue May 28 20:57:40 2013	(r251069)
@@ -15,7 +15,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/atoll.c
==============================================================================
--- head/lib/libc/stdlib/atoll.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/atoll.c	Tue May 28 20:57:40 2013	(r251069)
@@ -15,7 +15,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/bsearch.3
==============================================================================
--- head/lib/libc/stdlib/bsearch.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/bsearch.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/bsearch.c
==============================================================================
--- head/lib/libc/stdlib/bsearch.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/bsearch.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/div.3
==============================================================================
--- head/lib/libc/stdlib/div.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/div.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/div.c
==============================================================================
--- head/lib/libc/stdlib/div.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/div.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/exit.3
==============================================================================
--- head/lib/libc/stdlib/exit.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/exit.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/exit.c
==============================================================================
--- head/lib/libc/stdlib/exit.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/exit.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/getenv.3
==============================================================================
--- head/lib/libc/stdlib/getenv.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/getenv.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/getopt.3
==============================================================================
--- head/lib/libc/stdlib/getopt.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/getopt.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/getopt.c
==============================================================================
--- head/lib/libc/stdlib/getopt.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/getopt.c	Tue May 28 20:57:40 2013	(r251069)
@@ -12,7 +12,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/getsubopt.3
==============================================================================
--- head/lib/libc/stdlib/getsubopt.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/getsubopt.3	Tue May 28 20:57:40 2013	(r251069)
@@ -9,7 +9,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/stdlib/getsubopt.c
==============================================================================
--- head/lib/libc/stdlib/getsubopt.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/getsubopt.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/stdlib/heapsort.c
==============================================================================
--- head/lib/libc/stdlib/heapsort.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/stdlib/heapsort.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/bcmp.3
==============================================================================
--- head/lib/libc/string/bcmp.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/bcmp.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/bcmp.c
==============================================================================
--- head/lib/libc/string/bcmp.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/bcmp.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/bcopy.3
==============================================================================
--- head/lib/libc/string/bcopy.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/bcopy.3	Tue May 28 20:57:40 2013	(r251069)
@@ -12,7 +12,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/bcopy.c
==============================================================================
--- head/lib/libc/string/bcopy.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/bcopy.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/bstring.3
==============================================================================
--- head/lib/libc/string/bstring.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/bstring.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/bzero.3
==============================================================================
--- head/lib/libc/string/bzero.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/bzero.3	Tue May 28 20:57:40 2013	(r251069)
@@ -12,7 +12,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/ffs.3
==============================================================================
--- head/lib/libc/string/ffs.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/ffs.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/ffs.c
==============================================================================
--- head/lib/libc/string/ffs.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/ffs.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/ffsl.c
==============================================================================
--- head/lib/libc/string/ffsl.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/ffsl.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/ffsll.c
==============================================================================
--- head/lib/libc/string/ffsll.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/ffsll.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/fls.c
==============================================================================
--- head/lib/libc/string/fls.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/fls.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/flsl.c
==============================================================================
--- head/lib/libc/string/flsl.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/flsl.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/flsll.c
==============================================================================
--- head/lib/libc/string/flsll.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/flsll.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/index.3
==============================================================================
--- head/lib/libc/string/index.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/index.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/memccpy.3
==============================================================================
--- head/lib/libc/string/memccpy.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memccpy.3	Tue May 28 20:57:40 2013	(r251069)
@@ -9,7 +9,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/memccpy.c
==============================================================================
--- head/lib/libc/string/memccpy.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memccpy.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/memchr.3
==============================================================================
--- head/lib/libc/string/memchr.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memchr.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/memchr.c
==============================================================================
--- head/lib/libc/string/memchr.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memchr.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/memcmp.3
==============================================================================
--- head/lib/libc/string/memcmp.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memcmp.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/memcmp.c
==============================================================================
--- head/lib/libc/string/memcmp.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memcmp.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/memcpy.3
==============================================================================
--- head/lib/libc/string/memcpy.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memcpy.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/memmove.3
==============================================================================
--- head/lib/libc/string/memmove.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memmove.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/memset.3
==============================================================================
--- head/lib/libc/string/memset.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memset.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/memset.c
==============================================================================
--- head/lib/libc/string/memset.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/memset.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strcasecmp.3
==============================================================================
--- head/lib/libc/string/strcasecmp.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcasecmp.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strcasecmp.c
==============================================================================
--- head/lib/libc/string/strcasecmp.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcasecmp.c	Tue May 28 20:57:40 2013	(r251069)
@@ -15,7 +15,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strcasestr.c
==============================================================================
--- head/lib/libc/string/strcasestr.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcasestr.c	Tue May 28 20:57:40 2013	(r251069)
@@ -18,7 +18,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strcat.3
==============================================================================
--- head/lib/libc/string/strcat.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcat.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strcat.c
==============================================================================
--- head/lib/libc/string/strcat.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcat.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strchr.3
==============================================================================
--- head/lib/libc/string/strchr.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strchr.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strchr.c
==============================================================================
--- head/lib/libc/string/strchr.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strchr.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strcmp.3
==============================================================================
--- head/lib/libc/string/strcmp.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcmp.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strcmp.c
==============================================================================
--- head/lib/libc/string/strcmp.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcmp.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strcoll.3
==============================================================================
--- head/lib/libc/string/strcoll.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcoll.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strcpy.3
==============================================================================
--- head/lib/libc/string/strcpy.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcpy.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strcpy.c
==============================================================================
--- head/lib/libc/string/strcpy.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcpy.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strcspn.3
==============================================================================
--- head/lib/libc/string/strcspn.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strcspn.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strdup.3
==============================================================================
--- head/lib/libc/string/strdup.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strdup.3	Tue May 28 20:57:40 2013	(r251069)
@@ -9,7 +9,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strdup.c
==============================================================================
--- head/lib/libc/string/strdup.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strdup.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strerror.3
==============================================================================
--- head/lib/libc/string/strerror.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strerror.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strerror.c
==============================================================================
--- head/lib/libc/string/strerror.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strerror.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/string.3
==============================================================================
--- head/lib/libc/string/string.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/string.3	Tue May 28 20:57:40 2013	(r251069)
@@ -11,7 +11,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strlen.3
==============================================================================
--- head/lib/libc/string/strlen.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strlen.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strmode.3
==============================================================================
--- head/lib/libc/string/strmode.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strmode.3	Tue May 28 20:57:40 2013	(r251069)
@@ -9,7 +9,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strmode.c
==============================================================================
--- head/lib/libc/string/strmode.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strmode.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strncat.c
==============================================================================
--- head/lib/libc/string/strncat.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strncat.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strncmp.c
==============================================================================
--- head/lib/libc/string/strncmp.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strncmp.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strncpy.c
==============================================================================
--- head/lib/libc/string/strncpy.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strncpy.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strndup.c
==============================================================================
--- head/lib/libc/string/strndup.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strndup.c	Tue May 28 20:57:40 2013	(r251069)
@@ -12,7 +12,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strnstr.c
==============================================================================
--- head/lib/libc/string/strnstr.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strnstr.c	Tue May 28 20:57:40 2013	(r251069)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strpbrk.3
==============================================================================
--- head/lib/libc/string/strpbrk.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strpbrk.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strpbrk.c
==============================================================================
--- head/lib/libc/string/strpbrk.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strpbrk.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strrchr.c
==============================================================================
--- head/lib/libc/string/strrchr.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strrchr.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strsep.3
==============================================================================
--- head/lib/libc/string/strsep.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strsep.3	Tue May 28 20:57:40 2013	(r251069)
@@ -12,7 +12,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strsep.c
==============================================================================
--- head/lib/libc/string/strsep.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strsep.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strsignal.c
==============================================================================
--- head/lib/libc/string/strsignal.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strsignal.c	Tue May 28 20:57:40 2013	(r251069)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strspn.3
==============================================================================
--- head/lib/libc/string/strspn.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strspn.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strstr.3
==============================================================================
--- head/lib/libc/string/strstr.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strstr.3	Tue May 28 20:57:40 2013	(r251069)
@@ -14,7 +14,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/strstr.c
==============================================================================
--- head/lib/libc/string/strstr.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strstr.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strtok.3
==============================================================================
--- head/lib/libc/string/strtok.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strtok.3	Tue May 28 20:57:40 2013	(r251069)
@@ -22,7 +22,7 @@
 .\"    disclaimer in the documentation and/or other materials provided
 .\"    with the distribution.
 .\"
-.\" 4. Neither the name of Softweyr LLC, the University nor the names
+.\" 3. Neither the name of Softweyr LLC, the University nor the names
 .\"    of its contributors may be used to endorse or promote products
 .\"    derived from this software without specific prior written
 .\"    permission.

Modified: head/lib/libc/string/strtok.c
==============================================================================
--- head/lib/libc/string/strtok.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strtok.c	Tue May 28 20:57:40 2013	(r251069)
@@ -15,7 +15,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notices, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: head/lib/libc/string/strxfrm.3
==============================================================================
--- head/lib/libc/string/strxfrm.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/strxfrm.3	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/swab.3
==============================================================================
--- head/lib/libc/string/swab.3	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/swab.3	Tue May 28 20:57:40 2013	(r251069)
@@ -9,7 +9,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: head/lib/libc/string/swab.c
==============================================================================
--- head/lib/libc/string/swab.c	Tue May 28 20:53:26 2013	(r251068)
+++ head/lib/libc/string/swab.c	Tue May 28 20:57:40 2013	(r251069)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-src-head mailing list