1#include <sandbox.h>
2
3int
4main(void)
5{
6	char	*ep;
7	int	 rc;
8
9	rc = sandbox_init(kSBXProfileNoInternet, SANDBOX_NAMED, &ep);
10	if (-1 == rc)
11		sandbox_free_error(ep);
12	return(-1 == rc);
13}
14