Loading...
--- Libc/Libc-262/string/bzero.3
+++ Libc/Libc-498.1.5/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.7 2001/10/01 16:09:00 ru 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
@@ -44,19 +44,19 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
-.In string.h
+.In strings.h
.Ft void
-.Fn bzero "void *b" "size_t len"
+.Fn bzero "void *s" "size_t n"
.Sh DESCRIPTION
The
.Fn bzero
function
writes
-.Fa len
-zero bytes to the string
-.Fa b .
+.Fa n
+zeroed bytes to the string
+.Fa s .
If
-.Fa len
+.Fa n
is zero,
.Fn bzero
does nothing.
@@ -69,3 +69,10 @@
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.