aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/amd64/string/bzero.c
blob: 92adb2bb4f0e4493d8280d6904402fdfb862b58a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/*-
 * Public domain.
 */

#include <string.h>

void
bzero(void *b, size_t len)
{

	memset(b, 0, len);
}