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

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