summaryrefslogtreecommitdiff
path: root/src/strings/bzero.c
blob: 383d55c3bfce858d018921a976b357423374c33b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <string.h>
#include <strings.h>

void bzero(void* s, size_t n)
{
	(void)memset(s, '\0', n);
}

/*
XOPEN(400,700)
*/