7666f5006c
Note that mandoc does not use anymore sqlite3 but a home made database format An important improvement has been made as well in makewhatis performance: Tests on my laptop shows makewhatis on the entire system goes from 26s to 12s
14 lines
186 B
C
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);
|
|
}
|