dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit d0df4d0d727a0715d68be1c1072917d526d121e1
parent 87f8e6687b23e9f6d7c725115f4c0d624cfec736
Author: Devin J. Pohly <djpohly@gmail.com>
Date:   Sat,  2 May 2020 10:42:51 -0500

correct standard include for signal.h

Fixes #1.  Thanks @sdsddsd1!

Diffstat:
Mdwl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwl.c b/dwl.c @@ -8,7 +8,7 @@ #include <stdio.h> #include <time.h> #include <unistd.h> -#include <sys/signal.h> +#include <signal.h> #include <sys/wait.h> #include <linux/input-event-codes.h> #include <wayland-server-core.h>