aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_alloc.c
blob: 6579e0e91321bc58204397b53934e8dd2da7a28c (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <kernel/lib/stdlib/liballoc.h>

uint32_t sys_alloc(uint32_t count)
{
    return (uint32_t) umalloc(count);
}