aboutsummaryrefslogtreecommitdiff
path: root/have/explicit_bzero.c
blob: 9e8bd7015002dd2294245fc3dfc3c2628b45c2c8 (plain)
1
2
3
4
5
6
7
8
9
10
#include <string.h>

int
main(void)
{
	char buf[] = "hello world";

	explicit_bzero(buf, sizeof(buf));
	return strcmp(buf, "");
}