include strings.h (if available) for the strcasecmp() proto

This commit is contained in:
Daniel Stenberg 2008-05-08 22:14:17 +00:00
parent 6df5dddd90
commit cf4570a06f
3 changed files with 9 additions and 0 deletions

View File

@ -43,6 +43,9 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#if defined(WIN32)
#include <winsock.h>

View File

@ -32,6 +32,9 @@
#endif
#include <netdb.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <stdio.h>
#include <stdlib.h>

View File

@ -29,6 +29,9 @@
#include <unistd.h>
#endif
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <stdio.h>
#include <stdlib.h>