aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/output
diff options
context:
space:
mode:
authorLibravatar sghctoma <sghctoma@gmail.com>2018-08-30 09:29:05 +0200
committerLibravatar sghctoma <sghctoma@gmail.com>2018-08-30 09:34:26 +0200
commitcc16948c8598e8b9aa98506dcdad66967dc28712 (patch)
treee06909895e67689e68ea4b76e14413dd9c291d29 /sway/commands/output
parentMerge pull request #2537 from ianyfan/commands (diff)
downloadsway-cc16948c8598e8b9aa98506dcdad66967dc28712.tar.gz
sway-cc16948c8598e8b9aa98506dcdad66967dc28712.tar.zst
sway-cc16948c8598e8b9aa98506dcdad66967dc28712.zip
Fix feature macros for FreeBSD
On FreeBSD, snprintf and vsnprintf are visible only if _XOPEN_SOURCE >= 600.
Diffstat (limited to 'sway/commands/output')
-rw-r--r--sway/commands/output/background.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/output/background.c b/sway/commands/output/background.c
index 74894812..900a5e75 100644
--- a/sway/commands/output/background.c
+++ b/sway/commands/output/background.c
@@ -1,4 +1,4 @@
1#define _XOPEN_SOURCE 500 1#define _XOPEN_SOURCE 600
2#include <libgen.h> 2#include <libgen.h>
3#include <strings.h> 3#include <strings.h>
4#include <unistd.h> 4#include <unistd.h>