diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-05-02 10:42:51 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2020-05-02 10:42:51 -0500 |
commit | d0df4d0d727a0715d68be1c1072917d526d121e1 (patch) | |
tree | 3804a925698ed8d2eca2fae61e4d0d5cff97d8d7 | |
parent | 87f8e6687b23e9f6d7c725115f4c0d624cfec736 (diff) |
correct standard include for signal.h
Fixes #1. Thanks @sdsddsd1!
-rw-r--r-- | dwl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |