xref: /freebsd/lib/libc/amd64/string/bzero.c (revision 069ac184)
1 /*-
2  * Public domain.
3  */
4 
5 #include <string.h>
6 
7 void
8 bzero(void *b, size_t len)
9 {
10 
11 	memset(b, 0, len);
12 }
13