gmid/compat/explicit_bzero.c

15 lines
171 B
C
Raw Normal View History

2021-01-21 16:37:02 +01:00
/*
* Public domain.
* Written by Matthew Dempsky.
*/
#include "../config.h"
2021-02-12 13:49:36 +01:00
#include <string.h>
2021-01-21 16:37:02 +01:00
void
explicit_bzero(void *buf, size_t len)
{
memset(buf, 0, len);
}