diff options
Diffstat (limited to 'ares')
-rw-r--r-- | ares/configure.ac | 1 | ||||
-rw-r--r-- | ares/setup_once.h | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/ares/configure.ac b/ares/configure.ac index 78f239f25..0165c5e90 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -553,7 +553,6 @@ AC_CHECK_MEMBER(struct addrinfo.ai_flags, AC_CHECK_FUNCS( bitncmp \ - isblank \ if_indextoname, dnl if found [], diff --git a/ares/setup_once.h b/ares/setup_once.h index 9d3908550..202b0cadc 100644 --- a/ares/setup_once.h +++ b/ares/setup_once.h @@ -124,12 +124,8 @@ #define ISUPPER(x) (isupper((int) ((unsigned char)x))) #define ISLOWER(x) (islower((int) ((unsigned char)x))) -#ifdef HAVE_ISBLANK -#define ISBLANK(x) (isblank((int) ((unsigned char)x))) -#else #define ISBLANK(x) (int)((((unsigned char)x) == ' ') || \ (((unsigned char)x) == '\t')) -#endif /* |