summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-06-27 00:34:04 -0400
committerLibravatar GitHub <noreply@github.com>2016-06-27 00:34:04 -0400
commit8f67903909dc542c9137bd8168967ca1f788b11e (patch)
treec5b7006e1d987db8bee9ba92445fbce6198ec2c6
parentMerge pull request #720 from Hummer12007/exec_fix (diff)
parentBug fix: Add missing header file, unistd.h (diff)
downloadsway-8f67903909dc542c9137bd8168967ca1f788b11e.tar.gz
sway-8f67903909dc542c9137bd8168967ca1f788b11e.tar.zst
sway-8f67903909dc542c9137bd8168967ca1f788b11e.zip
Merge pull request #723 from deklov/master
Bug fix: Add missing header file, unistd.h
-rw-r--r--swaylock/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/swaylock/main.c b/swaylock/main.c
index b5ce63ef..a0a2f1cb 100644
--- a/swaylock/main.c
+++ b/swaylock/main.c
@@ -11,6 +11,7 @@
11#include <getopt.h> 11#include <getopt.h>
12#include <signal.h> 12#include <signal.h>
13#include <stdbool.h> 13#include <stdbool.h>
14#include <unistd.h>
14 15
15#include "client/window.h" 16#include "client/window.h"
16#include "client/registry.h" 17#include "client/registry.h"