X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Flocale%2Fpleval.c;h=04da1c45e85989c831d1e5deb84055498e0e42b9;hb=8ee0ca0ce6cc04f3283e5391773108376ba5b4aa;hp=961dabc0a404cab777908e05f6dabc986366dc48;hpb=6527b03dcc029cf9edb7bf7dbaeab420092e04c9;p=musl diff --git a/src/locale/pleval.c b/src/locale/pleval.c index 961dabc0..04da1c45 100644 --- a/src/locale/pleval.c +++ b/src/locale/pleval.c @@ -1,5 +1,6 @@ #include #include +#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++;