optimizations #161

Open
emma wants to merge 44 commits from optimizations into main
Showing only changes of commit 8bdb72ece8 - Show all commits

View File

@ -8,13 +8,12 @@
*/
#ifdef __OpenBSD__
# include <unistd.h> /* NULL, pledge(2), unveil(2) */
# include <unistd.h> /* pledge(2) */
#endif
int main(void) {
#ifdef __OpenBSD__
(void)pledge(NULL, NULL);
(void)unveil(NULL, NULL);
(void)pledge("stdio", "");
#endif
return 1;
}