sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit a4bcddcfdc67ef64edf3737342a99c4e41cae6d4
parent d6daf10cad540f7581e9a325a041333d1113cae5
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Sat, 28 Jul 2018 10:24:04 +1000

Include errno.h

Diffstat:
Msway/desktop/transaction.c | 1+
Msway/input/seat.c | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c @@ -1,4 +1,5 @@ #define _POSIX_C_SOURCE 200809L +#include <errno.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> diff --git a/sway/input/seat.c b/sway/input/seat.c @@ -1,6 +1,7 @@ #define _XOPEN_SOURCE 700 #define _POSIX_C_SOURCE 199309L #include <assert.h> +#include <errno.h> #ifdef __linux__ #include <linux/input-event-codes.h> #elif __FreeBSD__