diff options
author | James Buren <braewoods+rb@braewoods.net> | 2021-06-27 15:13:59 +0000 |
---|---|---|
committer | James Buren <braewoods+rb@braewoods.net> | 2021-06-27 15:13:59 +0000 |
commit | 91bae5837bcd48a72d7cb9109f3d1490ff3a2e33 (patch) | |
tree | 08d5daca4dd2dd3d173f9a3e01c37926ee32162d /tools | |
parent | 3c7c71030f64eacc2fb7bb4d01247b81ee9d117e (diff) |
mkzenboot: fix implicit function warning
strcasecmp is defined in strings.h but it is not included here.
Change-Id: I0629560b6f928f9839f01918cce5e2f1e5b4a85c
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mkzenboot.c | 1 |
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 @@ #include <stdarg.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include <stdbool.h> #include <inttypes.h> #include <zlib.h> |