gmid/compat/explicit_bzero.c

13 lines
147 B
C

/*
* Public domain.
* Written by Matthew Dempsky.
*/
#include <string.h>
void
explicit_bzero(void *buf, size_t len)
{
memset(buf, 0, len);
}