diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-03-30 06:46:30 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-04-01 00:19:10 +0200 |
commit | fabd61f2383f99d07b34aef39535c3e2e7014c97 (patch) | |
tree | c1c8d6dc880115bbde0769a3282f86c68dc5dcad /src | |
parent | a92e9f578f96bdabae97fc25e671a713e02512c4 (diff) |
tool_help: include <strings.h> for strcasecmp
Reported-by: Wyatt O'Day
Fixes #3715
Closes #3716
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_help.c | 3 |
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" |