diff options
Diffstat (limited to 'src')
| -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; } |
