summaryrefslogtreecommitdiff
path: root/src/stdlib/strtoull.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/strtoull.c')
-rw-r--r--src/stdlib/strtoull.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stdlib/strtoull.c b/src/stdlib/strtoull.c
index 6f9bfe46..f4d1d248 100644
--- a/src/stdlib/strtoull.c
+++ b/src/stdlib/strtoull.c
@@ -1,7 +1,7 @@
#include <stdlib.h>
-#include "ctype.h"
-#include "limits.h"
-#include "errno.h"
+#include <ctype.h>
+#include <limits.h>
+#include <errno.h>
unsigned long long int strtoull(const char * restrict nptr, char ** restrict endptr, int base)
{