summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-15 20:10:45 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-15 20:10:45 -0400
commit5c2d888cbc5d75507640ad988ddfed80e6135b46 (patch)
treec9c5f21f9398bec09b6d5bd558936fe8d706bcf9
parentc3294ac46e555622e335b41fffef185d7298f155 (diff)
Added include for `strings.h`.
This is because `strcasecmp()` is technically in `strings.h`, rather than `string.h`.
-rw-r--r--git.c1
-rw-r--r--pullreqd.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/git.c b/git.c
index 25e6970..ab59ac4 100644
--- a/git.c
+++ b/git.c
@@ -4,6 +4,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <strings.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <syslog.h>
diff --git a/pullreqd.c b/pullreqd.c
index ccd1fb3..c2635a3 100644
--- a/pullreqd.c
+++ b/pullreqd.c
@@ -3,6 +3,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
+#include <strings.h>
#include <syslog.h>
#include <unistd.h>
#include "config.h"