aboutsummaryrefslogtreecommitdiff
path: root/ares/setup_once.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-02-14 13:31:37 +0000
committerYang Tse <yangsita@gmail.com>2007-02-14 13:31:37 +0000
commitfbcf86b83ee2a49b5627cc45545777f2a3fc488a (patch)
treeb99e3269f92e9a5b083fd9a921362a1faddfff0b /ares/setup_once.h
parent5c3f36b4b49961eca00c4d4cdf82dec64286f79b (diff)
avoid using funtion isblank() and just use our ISBLANK
macro to provide this functionality on all platforms
Diffstat (limited to 'ares/setup_once.h')
-rw-r--r--ares/setup_once.h4
1 files changed, 0 insertions, 4 deletions
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
/*