summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-03-30 06:46:30 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-04-01 00:19:10 +0200
commitfabd61f2383f99d07b34aef39535c3e2e7014c97 (patch)
treec1c8d6dc880115bbde0769a3282f86c68dc5dcad
parenta92e9f578f96bdabae97fc25e671a713e02512c4 (diff)
downloadcurl-fabd61f2383f99d07b34aef39535c3e2e7014c97.tar.gz
tool_help: include <strings.h> for strcasecmp
Reported-by: Wyatt O'Day Fixes #3715 Closes #3716
-rw-r--r--src/tool_help.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tool_help.c b/src/tool_help.c
index 8a3c25820..1ba9975c6 100644
--- a/src/tool_help.c
+++ b/src/tool_help.c
@@ -20,6 +20,9 @@
*
***************************************************************************/
#include "tool_setup.h"
+#ifdef HAVE_STRCASECMP
+#include <strings.h>
+#endif
#include "tool_panykey.h"
#include "tool_help.h"