From 12534f5aa0ed7c061f40af39ce6ea73bf21732f7 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 15:29:24 -0400 Subject: cleanup headers --- src/wchar/wcstoll.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/wchar/wcstoll.c b/src/wchar/wcstoll.c index bb85d915..e2c2c323 100644 --- a/src/wchar/wcstoll.c +++ b/src/wchar/wcstoll.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 @@ long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, long long int max = LLONG_MAX; long long int min = LLONG_MIN; - #include "../stdlib/_strtoi.h" + #include "stdlib/_strtoi.h" return ret; } -- cgit v1.2.1