diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-03 22:03:48 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-04-04 18:47:49 -0400 |
commit | 053b51c3ff63147aed25400efb42c00ee3de90b9 (patch) | |
tree | fe29e1a3c1923dddbbcf82a527e8a90c75947557 | |
parent | 218a3787d26296103225b7680bacdfd5fc6d2955 (diff) |
exit() needs stdlib.h
inb4 acrisci
-rw-r--r-- | swaylock/seat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swaylock/seat.c b/swaylock/seat.c index 6c46bb41..21db7c4f 100644 --- a/swaylock/seat.c +++ b/swaylock/seat.c @@ -1,4 +1,5 @@ #include <assert.h> +#include <stdlib.h> #include <sys/mman.h> #include <unistd.h> #include <wlr/util/log.h> |