summaryrefslogtreecommitdiff
path: root/src/wchar/wcstoull.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcstoull.c')
-rw-r--r--src/wchar/wcstoull.c8
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;
}