fix harmless-by-chance typo in priority inheritance mutex code
[musl] / src / locale / pleval.c
index 961dabc..04da1c4 100644 (file)
@@ -1,5 +1,6 @@
 #include <stdlib.h>
 #include <ctype.h>
+#include "pleval.h"
 
 /*
 grammar:
@@ -28,14 +29,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++;