Loading...
string/bzero.3 Libc-583 Libc-262
--- Libc/Libc-583/string/bzero.3
+++ Libc/Libc-262/string/bzero.3
@@ -33,7 +33,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"	@(#)bzero.3	8.1 (Berkeley) 6/4/93
-.\" $FreeBSD: src/lib/libc/string/bzero.3,v 1.9 2003/09/08 19:57:15 ru Exp $
+.\" $FreeBSD: src/lib/libc/string/bzero.3,v 1.7 2001/10/01 16:09:00 ru Exp $
 .\"
 .Dd June 4, 1993
 .Dt BZERO 3
@@ -44,19 +44,19 @@
 .Sh LIBRARY
 .Lb libc
 .Sh SYNOPSIS
-.In strings.h
+.In string.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.
@@ -69,10 +69,3 @@
 function
 appeared in
 .Bx 4.3 .
-Its prototype existed previously in
-.In string.h
-before it was moved to
-.In strings.h
-for
-.St -p1003.1-2001
-compliance.