]> git.saurik.com Git - apple/libc.git/blob - string/FreeBSD/bzero.3.patch
08ec1c74124a189020ad0ae4a1eed39a567bbb82
[apple/libc.git] / string / FreeBSD / bzero.3.patch
1 --- bzero.3.bsdnew 2009-11-18 18:24:32.000000000 -0800
2 +++ bzero.3 2009-11-18 18:24:32.000000000 -0800
3 @@ -42,17 +42,17 @@
4 .Sh SYNOPSIS
5 .In strings.h
6 .Ft void
7 -.Fn bzero "void *b" "size_t len"
8 +.Fn bzero "void *s" "size_t n"
9 .Sh DESCRIPTION
10 The
11 .Fn bzero
12 function
13 writes
14 -.Fa len
15 -zero bytes to the string
16 -.Fa b .
17 +.Fa n
18 +zeroed bytes to the string
19 +.Fa s .
20 If
21 -.Fa len
22 +.Fa n
23 is zero,
24 .Fn bzero
25 does nothing.