avoid using funtion isblank() and just use our ISBLANK
authorYang Tse <yangsita@gmail.com>
Wed, 14 Feb 2007 13:31:37 +0000 (13:31 +0000)
committerYang Tse <yangsita@gmail.com>
Wed, 14 Feb 2007 13:31:37 +0000 (13:31 +0000)
macro to provide this functionality on all platforms

configure.ac
setup_once.h

index 78f239f..0165c5e 100644 (file)
@@ -553,7 +553,6 @@ AC_CHECK_MEMBER(struct addrinfo.ai_flags,
 
 
 AC_CHECK_FUNCS( bitncmp \
-                isblank \
                 if_indextoname,
 dnl if found
 [],
index 9d39085..202b0ca 100644 (file)
 #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
 
 
 /*