sbase

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

commit 71de7813c02d9fc3252a9a791b869de767202db8
parent b08bb6aad61a419a36110541b31b3f9f04c95ac8
Author: sin <sin@2f30.org>
Date:   Fri, 20 Feb 2015 16:00:39 +0000

Include strings.h for strcasecmp()

Fixes another build error on NetBSD.

Diffstat:
Mgrep.c | 1+
Mkill.c | 1+
Mlogger.c | 1+
3 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/grep.c b/grep.c @@ -3,6 +3,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include "queue.h" #include "util.h" diff --git a/kill.c b/kill.c @@ -7,6 +7,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include "util.h" diff --git a/logger.c b/logger.c @@ -2,6 +2,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #define SYSLOG_NAMES #include <syslog.h> #include <unistd.h>