diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-03-30 06:46:30 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-03-30 06:46:30 +0100 |
commit | 44a2b95c06230745d85911accd8e20fc0226321e (patch) | |
tree | aad3deb096acea05afcbe8cd876e9a57e22c1d8f | |
parent | e413baffdcb2e44bd19d95d792a04cbd3d61f6cc (diff) | |
download | curl-bagder/strcasecmp.tar.gz |
tool_help: include <strings.h> for strcasecmpbagder/strcasecmp
Reported-by: Wyatt O'Day
Fixes #3715
-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" |