about summary refs log tree commit diff
path: root/mdeliver.c
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-09-17 12:16:34 -0700
committerLeah Neukirchen <leah@vuxu.org>2020-09-25 14:53:47 +0200
commit50dfdf56055613738a32356836809a3ddfc2bc6a (patch)
tree4b3146131ff7e1ab4a707c2b33e8c7b712c96a25 /mdeliver.c
parentd2621a715bbd9c77adb83cff80b10c9ad9649173 (diff)
downloadmblaze-50dfdf56055613738a32356836809a3ddfc2bc6a.tar.gz
mblaze-50dfdf56055613738a32356836809a3ddfc2bc6a.tar.xz
mblaze-50dfdf56055613738a32356836809a3ddfc2bc6a.zip
include strings.h for str(n)casecmp
These POSIX functions are declared in strings.h, so include this
header explicitly instead of relying on the libc's default feature-test
macros to include it through string.h.
Diffstat (limited to 'mdeliver.c')
-rw-r--r--mdeliver.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mdeliver.c b/mdeliver.c
index 161cea5..27c4b9c 100644
--- a/mdeliver.c
+++ b/mdeliver.c
@@ -10,6 +10,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <strings.h>
 #include <unistd.h>
 
 #include "blaze822.h"