diff options
Diffstat (limited to 'src/wchar/wcstoul.c')
| -rw-r--r-- | src/wchar/wcstoul.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wchar/wcstoul.c b/src/wchar/wcstoul.c index f8373c05..37268c50 100644 --- a/src/wchar/wcstoul.c +++ b/src/wchar/wcstoul.c @@ -1,7 +1,10 @@ #include <wchar.h> +#include "wctype.h" #include "limits.h" #include "errno.h" +#define isspace iswspace + unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base) { unsigned long int ret = 0; |
