]> git.cameronkatri.com Git - mandoc.git/blob - test-sandbox_init.c
Split a new function roff_parse_comment() out of roff_expand() because this
[mandoc.git] / test-sandbox_init.c
1 #include <sandbox.h>
2
3 int
4 main(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 }