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

pull/1/head
Daniel Stenberg 17 years ago
parent 7829b79768
commit d4d2f9dc22
  1. 3
      acountry.c
  2. 3
      adig.c
  3. 3
      ahost.c

@ -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>

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

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

Loading…
Cancel
Save