freebsd-dev/test-sandbox_init.c
2017-01-21 13:01:39 +00:00

14 lines
186 B
C

#include <sandbox.h>
int
main(void)
{
char *ep;
int rc;
rc = sandbox_init(kSBXProfileNoInternet, SANDBOX_NAMED, &ep);
if (-1 == rc)
sandbox_free_error(ep);
return(-1 == rc);
}