aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdlib/itoa.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-06 19:04:05 +0200
committerMarvin Borner2020-05-06 19:04:05 +0200
commitd94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch)
tree559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/kernel/lib/stdlib/itoa.c
parent1a8563a05608b5b5e27eada44cf4790926001c68 (diff)
New build parameters and shared includes
This changes many files but I've just applied some replace commands.. So - nothing special!
Diffstat (limited to 'src/kernel/lib/stdlib/itoa.c')
-rw-r--r--src/kernel/lib/stdlib/itoa.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kernel/lib/stdlib/itoa.c b/src/kernel/lib/stdlib/itoa.c
index 5bb3359..165e260 100644
--- a/src/kernel/lib/stdlib/itoa.c
+++ b/src/kernel/lib/stdlib/itoa.c
@@ -1,8 +1,8 @@
-#include <kernel/lib/math.h>
+#include <lib/math.h>
#include <stdint.h>
-#include <kernel/lib/string.h>
-#include <kernel/memory/alloc.h>
-#include <kernel/memory/paging.h>
+#include <lib/string.h>
+#include <memory/alloc.h>
+#include <memory/paging.h>
static const char ITOA_TABLE[] = "0123456789";
@@ -14,7 +14,7 @@ char *itoa(int n)
ret[1] = 0;
return ret;
}
- uint8_t negative = (uint8_t)(n < 0);
+ u8 negative = (u8)(n < 0);
if (negative)
n *= -1;
@@ -22,7 +22,7 @@ char *itoa(int n)
for (sz = 0; n % pow(10, sz) != n; sz++) {
}
- char *ret = (char *)kmalloc((uint32_t)(sz + 1));
+ char *ret = (char *)kmalloc((u32)(sz + 1));
for (int i = 0; i < sz; i++) {
int digit = (n % pow(10, i + 1)) / pow(10, i);
@@ -31,7 +31,7 @@ char *itoa(int n)
ret[sz] = 0;
if (negative) {
- char *aux = (char *)kmalloc((uint32_t)(sz + 2));
+ char *aux = (char *)kmalloc((u32)(sz + 2));
strcpy(aux, ret);
aux[sz] = '-';
aux[sz + 1] = 0;