diff options
Diffstat (limited to 'src/kernel/lib/stdlib/itoa.c')
-rw-r--r-- | src/kernel/lib/stdlib/itoa.c | 14 |
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; |