summaryrefslogtreecommitdiff
path: root/pullreqd.c
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 /pullreqd.c
parentc3294ac46e555622e335b41fffef185d7298f155 (diff)
Added include for `strings.h`.
This is because `strcasecmp()` is technically in `strings.h`, rather than `string.h`.
Diffstat (limited to 'pullreqd.c')
-rw-r--r--pullreqd.c1
1 files changed, 1 insertions, 0 deletions
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"