diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2017-04-10 13:31:39 +0200 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2017-04-10 13:47:50 +0200 |
| commit | 61428042e203bdf708ca45306be3db11f1c678ae (patch) | |
| tree | 7ceb936a3c8aa9d7b5bfed53bb673c803e89a392 | |
| parent | e6af0066c8c2a3273e184f51375d368344f83f66 (diff) | |
| download | man-pages-61428042e203bdf708ca45306be3db11f1c678ae.tar.gz | |
bzero.3: Add correct header file for exlicit_bzero()
Reported-by: Zack Weinberg <zackw@panix.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
| -rw-r--r-- | man3/bzero.3 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/man3/bzero.3 b/man3/bzero.3 index 9b63025638..1bda9ba07a 100644 --- a/man3/bzero.3 +++ b/man3/bzero.3 @@ -28,9 +28,11 @@ bzero, explicit_bzero \- zero a byte string .SH SYNOPSIS .nf .B #include <strings.h> -.sp + .BI "void bzero(void *" s ", size_t " n ); +.B #include <string.h> + .BI "void explicit_bzero(void *" s ", size_t " n ); .fi .SH DESCRIPTION |
