summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/openbsd-compat/explicit_bzero.c
blob: b106741e5a10ce5e2e30efd9d08ad7074e7ad479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* OPENBSD ORIGINAL: lib/libc/string/explicit_bzero.c */
/*	$OpenBSD: explicit_bzero.c,v 1.1 2014/01/22 21:06:45 tedu Exp $ */
/*
 * Public domain.
 * Written by Ted Unangst
 */

#include "includes.h"

#ifndef HAVE_EXPLICIT_BZERO

/*
 * explicit_bzero - don't let the compiler optimize away bzero
 */
void
explicit_bzero(void *p, size_t n)
{
	bzero(p, n);
}
#endif
OpenPOWER on IntegriCloud