Blame explicit_bzero.c

882579
#ifdef HAVE_EXPLICIT_BZERO
882579
882579
int dummy;
882579
882579
#else
882579
882579
#include <stdint.h>
882579
882579
void explicit_bzero(void* s, size_t n)
882579
{
882579
	volatile char* buf = (volatile char*)s;
882579
	while(n-- *buf++ = '\0');
882579
}
882579
#endif