diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:30:10 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:30:10 -0400 |
commit | 67fff207b3f5a55af14fccf13f7b7617d2a1b5a3 (patch) | |
tree | 3d06978da45ef83e44c68d46d5a5edd0074f4a41 /src | |
parent | 04598bc9e99f4c0323d3608ebc2dbe7e1f8d9ae2 (diff) |
cleanup headers
Diffstat (limited to 'src')
-rw-r--r-- | src/wchar/wcstoull.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 <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 @@ 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; } |