mkzenboot: fix implicit function warning

strcasecmp is defined in strings.h but it is not included here.

Change-Id: I0629560b6f928f9839f01918cce5e2f1e5b4a85c
This commit is contained in:
James Buren 2021-06-27 15:13:59 +00:00
parent 3c7c71030f
commit 91bae5837b
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <stdbool.h>
#include <inttypes.h>
#include <zlib.h>