Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / string / explicit_bzero.c
blob5124df23cafcfd1da4ee01cec2fd257647c37c39
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 */
7 #include <string.h>
9 /*
10 * explicit_bzero - don't let the compiler optimize away bzero
12 void
13 explicit_bzero(void *p, size_t n)
15 bzero(p, n);