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>
This commit is contained in:
Michael Kerrisk 2017-04-10 13:31:39 +02:00
parent e6af0066c8
commit 61428042e2
1 changed files with 3 additions and 1 deletions

View File

@ -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