repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
string
/
explicit_bzero.c
blob
5124df23cafcfd1da4ee01cec2fd257647c37c39
1
/* $OpenBSD: explicit_bzero.c,v 1.2 2014/06/10 04:17:37 deraadt Exp $ */
2
/*
3
* Public domain.
4
* Written by Ted Unangst
5
*/
6
7
#include <string.h>
8
9
/*
10
* explicit_bzero - don't let the compiler optimize away bzero
11
*/
12
void
13
explicit_bzero
(
void
*
p
,
size_t
n
)
14
{
15
bzero
(
p
,
n
);
16
}