diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-14 16:32:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-14 16:32:50 -0400 |
commit | 2216e830be01434baf42dd2ba3d90b12ee3f5ccb (patch) | |
tree | da106e30210958dcdd7c0f8e75fa09d135f2452f /swaybar | |
parent | e91058509e972ef954f11759d27a00a2185b8019 (diff) | |
parent | 55d8a77dd87f4ead0ecb77e777d04ce8de841a31 (diff) |
Merge pull request #1398 from johalun/freebsd-fix
Fix build on FreeBSD adjusting/removing _XOPEN_SOURCE declaration.
Diffstat (limited to 'swaybar')
-rw-r--r-- | swaybar/status_line.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/status_line.c b/swaybar/status_line.c index e0564c26..cc324fdb 100644 --- a/swaybar/status_line.c +++ b/swaybar/status_line.c @@ -1,4 +1,4 @@ -#define _XOPEN_SOURCE 500 +#define _XOPEN_SOURCE 700 #include <stdlib.h> #include <string.h> #include <unistd.h> |