X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/7b00c0c43f52e9d27168e67a26aac19065cdb40c..ad3c9f2af814c84582fdd1649e49ec4f68572c5a:/string/FreeBSD/bzero.3 diff --git a/string/FreeBSD/bzero.3 b/string/FreeBSD/bzero.3 index 52d2684..642b2f1 100644 --- a/string/FreeBSD/bzero.3 +++ b/string/FreeBSD/bzero.3 @@ -42,17 +42,17 @@ .Sh SYNOPSIS .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.