Loading...
string/FreeBSD/bzero.3 Libc-1725.40.4 Libc-583
--- Libc/Libc-1725.40.4/string/FreeBSD/bzero.3
+++ Libc/Libc-583/string/FreeBSD/bzero.3
@@ -12,6 +12,10 @@
 .\" 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.
+.\" 3. All advertising materials mentioning features or use of this software
+.\"    must display the following acknowledgement:
+.\"	This product includes software developed by the University of
+.\"	California, Berkeley and its contributors.
 .\" 4. 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.
@@ -29,7 +33,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"	@(#)bzero.3	8.1 (Berkeley) 6/4/93
-.\" $FreeBSD: src/lib/libc/string/bzero.3,v 1.10 2007/01/09 00:28:11 imp Exp $
+.\" $FreeBSD: src/lib/libc/string/bzero.3,v 1.9 2003/09/08 19:57:15 ru Exp $
 .\"
 .Dd June 4, 1993
 .Dt BZERO 3
@@ -42,17 +46,17 @@
 .Sh SYNOPSIS
 .In strings.h
 .Ft void
-.Fn bzero "void *s" "size_t n"
+.Fn bzero "void *b" "size_t len"
 .Sh DESCRIPTION
 The
 .Fn bzero
 function
 writes
-.Fa n
-zeroed bytes to the string
-.Fa s .
+.Fa len
+zero bytes to the string
+.Fa b .
 If
-.Fa n
+.Fa len
 is zero,
 .Fn bzero
 does nothing.
@@ -72,9 +76,3 @@
 for
 .St -p1003.1-2001
 compliance.
-.Pp
-.Fn bzero
-was deprecated in
-.St -p1003.1-2001
-and removed in
-.St -p1003.1-2008 .