From 5c2d888cbc5d75507640ad988ddfed80e6135b46 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 15 Jun 2021 20:10:45 -0400 Subject: Added include for `strings.h`. This is because `strcasecmp()` is technically in `strings.h`, rather than `string.h`. --- git.c | 1 + pullreqd.c | 1 + 2 files changed, 2 insertions(+) diff --git a/git.c b/git.c index 25e6970..ab59ac4 100644 --- a/git.c +++ b/git.c @@ -4,6 +4,7 @@ #include #include #include +#include #include #include #include diff --git a/pullreqd.c b/pullreqd.c index ccd1fb3..c2635a3 100644 --- a/pullreqd.c +++ b/pullreqd.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include "config.h" -- cgit v1.2.3-13-gbd6f