diff options
author | araujo <araujo@FreeBSD.org> | 2015-08-24 01:51:10 +0000 |
---|---|---|
committer | araujo <araujo@FreeBSD.org> | 2015-08-24 01:51:10 +0000 |
commit | d3a80abb42524748eb0e932fdb7448ac1b0d2c56 (patch) | |
tree | a297da0da72f1e11ede79f67df209fbb7cc8f6f5 /lib/libc/string | |
parent | b8948860612c029177968b016b0dbba560095467 (diff) | |
download | FreeBSD-src-d3a80abb42524748eb0e932fdb7448ac1b0d2c56.zip FreeBSD-src-d3a80abb42524748eb0e932fdb7448ac1b0d2c56.tar.gz |
Update bzero(3) manpage to following the Posix Standard.
Reviewed by: wblock, pfg
Approved by: bapt (mentor)
Differential Revision: D3380
Diffstat (limited to 'lib/libc/string')
-rw-r--r-- | lib/libc/string/bzero.3 | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/libc/string/bzero.3 b/lib/libc/string/bzero.3 index 5af1bcf..130a652 100644 --- a/lib/libc/string/bzero.3 +++ b/lib/libc/string/bzero.3 @@ -31,7 +31,7 @@ .\" @(#)bzero.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd October 6, 2014 +.Dd August 24, 2015 .Dt BZERO 3 .Os .Sh NAME @@ -88,3 +88,11 @@ function first appeared in .Ox 5.5 and .Fx 11.0 . +.Pp +.St -p1003.1-2008 +removes the specification of +.Fn bzero +and it is marked as LEGACY in +.St -p1003.1-2004 . +For portability with other systems new programs should use +.Xr memset 3 . |