From fbcf86b83ee2a49b5627cc45545777f2a3fc488a Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 14 Feb 2007 13:31:37 +0000 Subject: avoid using funtion isblank() and just use our ISBLANK macro to provide this functionality on all platforms --- lib/cookie.c | 1 - lib/setup_once.h | 4 ---- 2 files changed, 5 deletions(-) (limited to 'lib') diff --git a/lib/cookie.c b/lib/cookie.c index 913ffabeb..41a366d2d 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -84,7 +84,6 @@ Example set of cookies: #include #include -#include #define _MPRINTF_REPLACE /* without this on windows OS we get undefined reference to snprintf */ #include diff --git a/lib/setup_once.h b/lib/setup_once.h index 827a6901e..e5a1117ac 100644 --- a/lib/setup_once.h +++ b/lib/setup_once.h @@ -131,12 +131,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 /* -- cgit v1.2.3