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

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