Blob


1 #include <string.h>
3 int
4 main(void)
5 {
6 char buf[] = "hello world";
8 explicit_bzero(buf, sizeof(buf));
9 return strcmp(buf, "");
10 }