aboutsummaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-09-18 07:16:20 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-09-18 07:16:20 -0400
commit8e25ce4e5763c74864587b0a78217eb20c299afe (patch)
tree7338bafa0e5bb5ca7897639f40f723c6689b9acb /sway
parentRevert "new_workspace null behavior + testmap functions + regex" (diff)
downloadsway-8e25ce4e5763c74864587b0a78217eb20c299afe.tar.gz
sway-8e25ce4e5763c74864587b0a78217eb20c299afe.tar.zst
sway-8e25ce4e5763c74864587b0a78217eb20c299afe.zip
Fix build for debian stretch
Fixes #182
Diffstat (limited to 'sway')
-rw-r--r--sway/commands.c1
-rw-r--r--sway/main.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index e79746ae..71eb9d70 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -7,6 +7,7 @@
7#include <string.h> 7#include <string.h>
8#include <unistd.h> 8#include <unistd.h>
9#include <ctype.h> 9#include <ctype.h>
10#include <sys/types.h>
10#include "stringop.h" 11#include "stringop.h"
11#include "layout.h" 12#include "layout.h"
12#include "focus.h" 13#include "focus.h"
diff --git a/sway/main.c b/sway/main.c
index e03588ea..97243f99 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -3,6 +3,7 @@
3#include <stdbool.h> 3#include <stdbool.h>
4#include <wlc/wlc.h> 4#include <wlc/wlc.h>
5#include <sys/wait.h> 5#include <sys/wait.h>
6#include <sys/types.h>
6#include <signal.h> 7#include <signal.h>
7#include <getopt.h> 8#include <getopt.h>
8#include "layout.h" 9#include "layout.h"