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

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