[hackers] [dmenu] code-style for pledge(2) || Hiltjo Posthuma
commit 05c138f5b8f19070a190b97728c83b454855f52b
Author: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
AuthorDate: Fri May 25 13:03:25 2018 +0200
Commit: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
CommitDate: Fri May 25 13:03:25 2018 +0200
code-style for pledge(2)
feedback from Klemens, thanks
diff --git a/dmenu.c b/dmenu.c
index 7745947..3b2f3ec 100644
--- a/dmenu.c
+++ b/dmenu.c
_AT_@ -6,6 +6,9 @@
#include <string.h>
#include <strings.h>
#include <time.h>
+#ifdef __OpenBSD__
+#include <unistd.h>
+#endif
#include <X11/Xlib.h>
#include <X11/Xatom.h>
_AT_@ -24,12 +27,6 @@
#define LENGTH(X) (sizeof X / sizeof X[0])
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
-#ifdef __OpenBSD__
-#include <unistd.h>
-#else
-#define pledge(a,b) 0
-#endif
-
/* enums */
enum { SchemeNorm, SchemeSel, SchemeOut, SchemeLast }; /* color schemes */
_AT_@ -752,8 +749,10 @@ main(int argc, char *argv[])
die("no fonts could be loaded.");
lrpad = drw->fonts->h;
+#ifdef __OpenBSD__
if (pledge("stdio rpath", NULL) < 0)
die("pledge");
+#endif
if (fast) {
grabkeyboard();
Received on Fri May 25 2018 - 13:04:53 CEST
This archive was generated by hypermail 2.3.0
: Fri May 25 2018 - 13:12:25 CEST