aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdlib/itoa.c
diff options
context:
space:
mode:
authorMarvin Borner2020-01-20 23:12:54 +0100
committerMarvin Borner2020-01-20 23:12:54 +0100
commit391ed256d21a6ae2e2456d1809f357e6e96e15d1 (patch)
tree0fe9ffb3c59bbfeb3d8a04ab7fc6efba60d81e79 /src/kernel/lib/stdlib/itoa.c
parentd5d1749257ff8b9aa6b5ace4b4720b484a2860f3 (diff)
Added pure awesomeness
Actually quite some days of work but ok
Diffstat (limited to 'src/kernel/lib/stdlib/itoa.c')
-rw-r--r--src/kernel/lib/stdlib/itoa.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/lib/stdlib/itoa.c b/src/kernel/lib/stdlib/itoa.c
index 67273b3..ea03aa2 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 <stdint.h>
#include <kernel/lib/string.h>
-#include <kernel/lib/stdlib.h>
-#include <kernel/paging/paging.h>
+#include <kernel/memory/kheap.h>
+#include <kernel/memory/paging.h>
static const char ITOA_TABLE[] = "0123456789";
@@ -12,7 +12,7 @@ char *itoa(int n)
return "0"; // kmalloc isn't available
if (!n) {
- char *ret = kmalloc(2);
+ char *ret = (char *) kmalloc(2);
ret[0] = '0';
ret[1] = 0;
return ret;
@@ -23,7 +23,7 @@ char *itoa(int n)
int sz;
for (sz = 0; n % pow(10, sz) != n; sz++) {}
- char *ret = kmalloc(sz + 1);
+ char *ret = (char *) kmalloc((uint32_t) (sz + 1));
for (int i = 0; i < sz; i++) {
int digit = (n % pow(10, i + 1)) / pow(10, i);
@@ -32,7 +32,7 @@ char *itoa(int n)
ret[sz] = 0;
if (negative) {
- char *aux = kmalloc(sz + 2);
+ char *aux = (char *) kmalloc((uint32_t) (sz + 2));
strcpy(aux, ret);
aux[sz] = '-';
aux[sz + 1] = 0;