sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 3e1e54051ed6fd38feb05e35385846124fc7674b
parent 31572c8b0eab99dc1647ea398eb895e73c4160ad
Author: sin <sin@2f30.org>
Date:   Sat, 14 Feb 2015 20:15:01 +0000

Add some missing includes

Diffstat:
Mcron.c | 1+
Mkill.c | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/cron.c b/cron.c @@ -2,6 +2,7 @@ #include <sys/wait.h> #include <errno.h> +#include <signal.h> #include <stdarg.h> #include <stdlib.h> #include <stdio.h> diff --git a/kill.c b/kill.c @@ -3,6 +3,7 @@ #include <ctype.h> #include <errno.h> +#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h>