On Tue, Jan 19, 2016 at 09:29:58AM +0100, Sebastien Marie wrote:
>
> char *empty = {NULL};
> pledge("stdio rpath", empty);
>
should be better with an array of char *, sorry.
char *empty[] = { NULL };
pledge("stdio rpath", empty);
--
Sebastien Marie
