aboutsummaryrefslogtreecommitdiffstats
path: root/missing/explicit_bzero.c
blob: cb11bd6da1383c8f1f7b46f95ac59e272361c70c (plain)
1
2
3
4
5
6
7
8
#include <string.h>

/* prevent the compiler from optimizing away memset or bzero */
void
explicit_bzero(void *p, size_t n)
{
    memset(p, 0, n);
}