diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-05-08 22:14:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-05-08 22:14:17 +0000 |
commit | d4d2f9dc22295224deab64ef89530a4f1c529277 (patch) | |
tree | 0f92e513ebd3699f5ad551fb8e705a472ca3ce1a | |
parent | 7829b79768124eb6d3628267f71780121f245265 (diff) | |
download | c-ares-d4d2f9dc22295224deab64ef89530a4f1c529277.tar.gz c-ares-d4d2f9dc22295224deab64ef89530a4f1c529277.tar.bz2 c-ares-d4d2f9dc22295224deab64ef89530a4f1c529277.zip |
include strings.h (if available) for the strcasecmp() proto
-rw-r--r-- | acountry.c | 3 | ||||
-rw-r--r-- | adig.c | 3 | ||||
-rw-r--r-- | ahost.c | 3 |
3 files changed, 9 insertions, 0 deletions
@@ -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> |