aboutsummaryrefslogtreecommitdiff
path: root/libc/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/alloc.c')
-rw-r--r--libc/alloc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/alloc.c b/libc/alloc.c
index 8522203..b8139d0 100644
--- a/libc/alloc.c
+++ b/libc/alloc.c
@@ -26,12 +26,15 @@ static int liballoc_free(void *ptr, u32 p)
static void *liballoc_alloc(u32 p)
{
- return sys_alloc(p);
+ u32 addr;
+ assert(sys_alloc(p, &addr) == EOK);
+ return (void *)addr;
}
static int liballoc_free(void *ptr, u32 p)
{
- sys_free(ptr, p);
+ UNUSED(p);
+ assert(sys_free(ptr) == EOK);
return 0;
}