aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_malloc.c
blob: 8adc362286e55d7a6cd84f334fd0561de43c7901 (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <kernel/memory/alloc.h>

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