Blame


1 5c342d05 2021-01-21 op /*
2 5c342d05 2021-01-21 op * Public domain.
3 5c342d05 2021-01-21 op * Written by Matthew Dempsky.
4 5c342d05 2021-01-21 op */
5 5c342d05 2021-01-21 op
6 7e262563 2021-01-22 op #include "../config.h"
7 7e262563 2021-01-22 op
8 76898714 2021-02-12 op #include <string.h>
9 76898714 2021-02-12 op
10 5c342d05 2021-01-21 op void
11 5c342d05 2021-01-21 op explicit_bzero(void *buf, size_t len)
12 5c342d05 2021-01-21 op {
13 5c342d05 2021-01-21 op memset(buf, 0, len);
14 5c342d05 2021-01-21 op }