aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdlib
diff options
context:
space:
mode:
authorMarvin Borner2020-05-13 21:28:56 +0200
committerMarvin Borner2020-05-13 22:12:41 +0200
commita9c7529dcca845d98192ece62be70f752972216b (patch)
tree666d49ceb411a669abe6191151b2238fd7156c30 /src/kernel/lib/stdlib
parente1a6ed079303dc7d218f1d5326a13b6755781271 (diff)
Replaced alloc.h with liballoc
And many more adaptions to the lib
Diffstat (limited to 'src/kernel/lib/stdlib')
-rw-r--r--src/kernel/lib/stdlib/htoa.c4
-rw-r--r--src/kernel/lib/stdlib/itoa.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/lib/stdlib/htoa.c b/src/kernel/lib/stdlib/htoa.c
index c4dbd5e..9cf57cc 100644
--- a/src/kernel/lib/stdlib/htoa.c
+++ b/src/kernel/lib/stdlib/htoa.c
@@ -6,7 +6,7 @@ static const char HTOA_TABLE[] = "0123456789ABCDEF";
char *htoa(u32 n)
{
- char *ret = (char *)kmalloc(10);
+ char *ret = (char *)malloc(10);
int i = 0;
while (n) {
@@ -23,7 +23,7 @@ char *htoa(u32 n)
ret[i] = 0;
char *aux = strdup(ret);
- kfree(ret);
+ free(ret);
ret = aux;
strinv(ret);
diff --git a/src/kernel/lib/stdlib/itoa.c b/src/kernel/lib/stdlib/itoa.c
index b4a9db1..2020ca6 100644
--- a/src/kernel/lib/stdlib/itoa.c
+++ b/src/kernel/lib/stdlib/itoa.c
@@ -9,7 +9,7 @@ static const char ITOA_TABLE[] = "0123456789";
char *itoa(int n)
{
if (!n) {
- char *ret = (char *)kmalloc(2);
+ char *ret = (char *)malloc(2);
ret[0] = '0';
ret[1] = 0;
return ret;
@@ -22,7 +22,7 @@ char *itoa(int n)
for (sz = 0; n % pow(10, sz) != n; sz++) {
}
- char *ret = (char *)kmalloc((u32)(sz + 1));
+ char *ret = (char *)malloc((u32)(sz + 1));
for (int i = 0; i < sz; i++) {
int digit = (n % pow(10, i + 1)) / pow(10, i);
@@ -31,11 +31,11 @@ char *itoa(int n)
ret[sz] = 0;
if (negative) {
- char *aux = (char *)kmalloc((u32)(sz + 2));
+ char *aux = (char *)malloc((u32)(sz + 2));
strcpy(aux, ret);
aux[sz] = '-';
aux[sz + 1] = 0;
- kfree(ret);
+ free(ret);
ret = aux;
}