diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:28:54 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:28:54 -0400 |
commit | 55973790cab542b1f657b4fb1db45e9ee00c116a (patch) | |
tree | b955e3fe86e9552bd05591edce378a147b851646 | |
parent | 6228d597543fa2682374f950355fb31691cf930f (diff) |
cleanup headers
-rw-r--r-- | src/wchar/wcstol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wchar/wcstol.c b/src/wchar/wcstol.c index 12a29858..97741a3d 100644 --- a/src/wchar/wcstol.c +++ b/src/wchar/wcstol.c @@ -1,7 +1,7 @@ #include <wchar.h> -#include "wctype.h" -#include "limits.h" -#include "errno.h" +#include <wctype.h> +#include <limits.h> +#include <errno.h> #define isspace iswspace @@ -11,7 +11,7 @@ long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int b long int max = LONG_MAX; long int min = LONG_MIN; - #include "../stdlib/_strtoi.h" + #include "stdlib/_strtoi.h" return ret; } |