1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-23 16:48:49 -05:00

curl: fix include conditions

This commit is contained in:
lufia 2019-08-29 01:11:47 +09:00 committed by Daniel Stenberg
parent 05856dae9c
commit 4a90c5b82e
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,7 @@
*
***************************************************************************/
#include "tool_setup.h"
#ifdef HAVE_STRCASECMP
#if defined(HAVE_STRCASECMP) && defined(HAVE_STRINGS_H)
#include <strings.h>
#endif

View File

@ -29,6 +29,10 @@
# include <locale.h>
#endif
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#ifdef __VMS
# include <fabdef.h>
#endif