aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdlib
diff options
context:
space:
mode:
authorMarvin Borner2020-05-07 22:19:13 +0200
committerMarvin Borner2020-05-07 22:19:13 +0200
commit9b2e28ad7a752c0fe7b60e73ca43c827b45b3ee8 (patch)
tree5b1b48ccf8324cced9ae9c4139b493cd98789cc2 /src/userspace/libc/stdlib
parent43184e40b14a5e41383ffb053e7c69c93ff81036 (diff)
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/userspace/libc/stdlib')
-rw-r--r--src/userspace/libc/stdlib/atoi.c2
-rw-r--r--src/userspace/libc/stdlib/htoi.c4
-rw-r--r--src/userspace/libc/stdlib/itoa.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/userspace/libc/stdlib/atoi.c b/src/userspace/libc/stdlib/atoi.c
index dbfe0cb..80897eb 100644
--- a/src/userspace/libc/stdlib/atoi.c
+++ b/src/userspace/libc/stdlib/atoi.c
@@ -1,7 +1,7 @@
+#include <math.h>
#include <stddef.h>
#include <stdint.h>
#include <string.h>
-#include <math.h>
int atoi(char *str)
{
diff --git a/src/userspace/libc/stdlib/htoi.c b/src/userspace/libc/stdlib/htoi.c
index 8897d20..0d0ab30 100644
--- a/src/userspace/libc/stdlib/htoi.c
+++ b/src/userspace/libc/stdlib/htoi.c
@@ -1,6 +1,6 @@
-#include <stdint.h>
-#include <stddef.h>
#include <math.h>
+#include <stddef.h>
+#include <stdint.h>
#include <string.h>
int htoi(char *str)
diff --git a/src/userspace/libc/stdlib/itoa.c b/src/userspace/libc/stdlib/itoa.c
index b8aa73e..b960796 100644
--- a/src/userspace/libc/stdlib/itoa.c
+++ b/src/userspace/libc/stdlib/itoa.c
@@ -1,6 +1,6 @@
+#include <math.h>
#include <stdint.h>
#include <stdlib.h>
-#include <math.h>
#include <string.h>
static const char ITOA_TABLE[] = "0123456789";