From 67fff207b3f5a55af14fccf13f7b7617d2a1b5a3 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 15:30:10 -0400 Subject: cleanup headers --- src/wchar/wcstoull.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/wchar/wcstoull.c b/src/wchar/wcstoull.c index fcd09d0b..23cfcb2f 100644 --- a/src/wchar/wcstoull.c +++ b/src/wchar/wcstoull.c @@ -1,7 +1,7 @@ #include -#include "limits.h" -#include "errno.h" -#include "wctype.h" +#include +#include +#include #define isspace iswspace @@ -11,7 +11,7 @@ unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restri unsigned long long int max = ULLONG_MAX; unsigned long long int min = 0; - #include "../stdlib/_strtoi.h" + #include "stdlib/_strtoi.h" return ret; } -- cgit v1.2.1