gmid/have/explicit_bzero.c
2021-01-21 15:37:02 +00:00

11 lines
130 B
C

#include <string.h>
int
main(void)
{
char buf[] = "hello world";
explicit_bzero(buf, sizeof(buf));
return strcmp(buf, "");
}