Blob


1 /*
2 * Public domain.
3 * Written by Matthew Dempsky.
4 */
6 #include <string.h>
8 void
9 explicit_bzero(void *buf, size_t len)
10 {
11 memset(buf, 0, len);
12 }