aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_map.c
blob: 63bfd9d1665f98017241a29dc1b143cdd15c9d4a (plain) (blame)
1
2
3
4
5
6
7
8
#include <stdint.h>
#include <events/event.h>

u32 sys_map(u32 id, u32 *function)
{
	event_map(id, function);
	return -1;
}