X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58..6465356a983ac139f81d3b7913cdb548477c346c:/string/FreeBSD/bzero.3 diff --git a/string/FreeBSD/bzero.3 b/string/FreeBSD/bzero.3 index 52d2684..04c82de 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. @@ -72,3 +72,9 @@ before it was moved to for .St -p1003.1-2001 compliance. +.Pp +.Fn bzero +was deprecated in +.St -p1003.1-2001 +and removed in +.St -p1003.1-2008 .