summaryrefslogtreecommitdiff
path: root/src/locale/pleval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/locale/pleval.c')
-rw-r--r--src/locale/pleval.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/locale/pleval.c b/src/locale/pleval.c
index 961dabc0..d60058da 100644
--- a/src/locale/pleval.c
+++ b/src/locale/pleval.c
@@ -28,14 +28,6 @@ struct st {
int op;
};
-/* TODO: this should go into ctypes.h */
-#undef isspace
-#define isspace(a) __isspace(a)
-static __inline int __isspace(int _c)
-{
- return _c == ' ' || (unsigned)_c-'\t' < 5;
-}
-
static const char *skipspace(const char *s)
{
while (isspace(*s)) s++;