aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2017-04-10 13:31:39 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2017-04-10 13:47:50 +0200
commit61428042e203bdf708ca45306be3db11f1c678ae (patch)
tree7ceb936a3c8aa9d7b5bfed53bb673c803e89a392
parente6af0066c8c2a3273e184f51375d368344f83f66 (diff)
downloadman-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.34
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