aboutsummaryrefslogtreecommitdiff
path: root/sway/main.c
diff options
context:
space:
mode:
authorjohalun <johalun0@gmail.com>2017-06-05 13:44:29 +0200
committerjohalun <johalun0@gmail.com>2017-06-06 09:45:50 +0200
commit7fef2830446e1f98a02f8d8a3bba866b7edd5bd0 (patch)
tree10c1529eb56235b303bdbca905e8b80dce47ae6d /sway/main.c
parent5ed533a94331ea2d849f900ee20f8932d742e9b5 (diff)
FreeBSD fixes
Increase _POSIX_SOURCE value where needed. Increase _XOPEN_SOURCE value where needed. Conditionally link to libcap (only on Linux). Possibly some trailing whitespace fixes (automatic).
Diffstat (limited to 'sway/main.c')
-rw-r--r--sway/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/main.c b/sway/main.c
index 819788b1..82375e0b 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -1,4 +1,4 @@
-#define _XOPEN_SOURCE 500
+#define _XOPEN_SOURCE 700
#define _POSIX_C_SOURCE 200112L
#include <stdio.h>
#include <stdlib.h>
@@ -433,4 +433,3 @@ int main(int argc, char **argv) {
return exit_value;
}
-