Commit cf4570a0 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent 6df5dddd
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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>
+3 −0
Original line number Diff line number Diff line
@@ -32,6 +32,9 @@
#endif
#include <netdb.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif

#include <stdio.h>
#include <stdlib.h>
+3 −0
Original line number Diff line number Diff line
@@ -29,6 +29,9 @@
#include <unistd.h>
#endif
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif

#include <stdio.h>
#include <stdlib.h>