gmid/compat/explicit_bzero.c
Omar Polo 7e26256394 fixing compat compilation
include headers if needed and include config.h
2021-01-22 17:00:56 +00:00

15 lines
171 B
C

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