flst / upstream /emscripten /system /lib /libc /musl /src /string /explicit_bzero.c
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
156 Bytes
#define _BSD_SOURCE
#include <string.h>
void explicit_bzero(void *d, size_t n)
{
d = memset(d, 0, n);
__asm__ __volatile__ ("" : : "r"(d) : "memory");
}