diff options
author | Ron Yorston <rmy@pobox.com> | 2022-11-08 08:36:08 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2022-11-08 08:47:44 +0000 |
commit | 5507c8744566a7100d2da3cfa0decc005783a58e (patch) | |
tree | 91761d26b870b9bf55e99806a8c4c7e436fccaf9 | |
parent | 14e51376ea1d4c3888ea820b17f774a474e42504 (diff) | |
download | busybox-w32-5507c8744566a7100d2da3cfa0decc005783a58e.tar.gz busybox-w32-5507c8744566a7100d2da3cfa0decc005783a58e.tar.bz2 busybox-w32-5507c8744566a7100d2da3cfa0decc005783a58e.zip |
build system: silence compiler warningFRP-4784-g5507c8744
The compiler in MSYS2 warns that strcasecmp(3) isn't declared in
scripts/kconfig/lxdialog/checklist.c. Add the appropriate include
to silence this warning.
-rw-r--r-- | scripts/kconfig/lxdialog/dialog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/lxdialog/dialog.h b/scripts/kconfig/lxdialog/dialog.h index af3cf716e..10a3292e1 100644 --- a/scripts/kconfig/lxdialog/dialog.h +++ b/scripts/kconfig/lxdialog/dialog.h | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <ctype.h> | 24 | #include <ctype.h> |
25 | #include <stdlib.h> | 25 | #include <stdlib.h> |
26 | #include <string.h> | 26 | #include <string.h> |
27 | #include <strings.h> | ||
27 | 28 | ||
28 | #ifdef __sun__ | 29 | #ifdef __sun__ |
29 | #define CURS_MACROS | 30 | #define CURS_MACROS |