aboutsummaryrefslogtreecommitdiff
path: root/compat/explicit_bzero.c
blob: 4d4bdee6208cd21e872081a9c65834067d6e5c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Public domain.
 * Written by Matthew Dempsky.
 */

#include "../config.h"

#include <string.h>

void
explicit_bzero(void *buf, size_t len)
{
	memset(buf, 0, len);
}