aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_alloc.c
blob: 24abe4d89277eed44d94c8e62f7935e84e8c9a62 (plain) (blame)
1
2
3
4
5
6
#include <stdint.h>

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