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

#include <string.h>

#include "../config.h"

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