summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Buren <braewoods+rb@braewoods.net>2021-06-27 15:13:59 +0000
committerJames Buren <braewoods+rb@braewoods.net>2021-06-27 15:13:59 +0000
commit91bae5837bcd48a72d7cb9109f3d1490ff3a2e33 (patch)
tree08d5daca4dd2dd3d173f9a3e01c37926ee32162d
parent3c7c71030f64eacc2fb7bb4d01247b81ee9d117e (diff)
downloadrockbox-91bae5837bcd48a72d7cb9109f3d1490ff3a2e33.tar.gz
rockbox-91bae5837bcd48a72d7cb9109f3d1490ff3a2e33.zip
mkzenboot: fix implicit function warning
strcasecmp is defined in strings.h but it is not included here. Change-Id: I0629560b6f928f9839f01918cce5e2f1e5b4a85c
-rw-r--r--tools/mkzenboot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/mkzenboot.c b/tools/mkzenboot.c
index b345c0f5ac..e31bbd513c 100644
--- a/tools/mkzenboot.c
+++ b/tools/mkzenboot.c
@@ -24,6 +24,7 @@
24#include <stdarg.h> 24#include <stdarg.h>
25#include <stdlib.h> 25#include <stdlib.h>
26#include <string.h> 26#include <string.h>
27#include <strings.h>
27#include <stdbool.h> 28#include <stdbool.h>
28#include <inttypes.h> 29#include <inttypes.h>
29#include <zlib.h> 30#include <zlib.h>