1 #include <libckern.h>
2 
3 void
bzero(void * b,size_t len)4 bzero(void *b, size_t len)
5 {
6 	((char *)b)[len] = 0;
7 }
8