diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:29:47 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:29:47 -0400 |
commit | 04598bc9e99f4c0323d3608ebc2dbe7e1f8d9ae2 (patch) | |
tree | c83d565213ed4e2eac8db323d8c40387657b38c1 /src | |
parent | 12534f5aa0ed7c061f40af39ce6ea73bf21732f7 (diff) |
cleanup headers
Diffstat (limited to 'src')
-rw-r--r-- | src/wchar/wcstoul.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wchar/wcstoul.c b/src/wchar/wcstoul.c index 37268c50..51b026c2 100644 --- a/src/wchar/wcstoul.c +++ b/src/wchar/wcstoul.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 @@ unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict end unsigned long int max = ULONG_MAX; unsigned long int min = 0; - #include "../stdlib/_strtoi.h" + #include "stdlib/_strtoi.h" return ret; } |