diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:29:24 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:29:24 -0400 |
commit | 12534f5aa0ed7c061f40af39ce6ea73bf21732f7 (patch) | |
tree | 2ff242eb322c7ef603fa5d07c84b0d834fe456af /src/wchar | |
parent | 55973790cab542b1f657b4fb1db45e9ee00c116a (diff) |
cleanup headers
Diffstat (limited to 'src/wchar')
-rw-r--r-- | src/wchar/wcstoll.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 <wchar.h> -#include "limits.h" -#include "errno.h" -#include "wctype.h" +#include <limits.h> +#include <errno.h> +#include <wctype.h> #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; } |