aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_map.c')
-rw-r--r--src/kernel/syscall/actions/sys_map.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/kernel/syscall/actions/sys_map.c b/src/kernel/syscall/actions/sys_map.c
new file mode 100644
index 0000000..63bfd9d
--- /dev/null
+++ b/src/kernel/syscall/actions/sys_map.c
@@ -0,0 +1,8 @@
+#include <stdint.h>
+#include <events/event.h>
+
+u32 sys_map(u32 id, u32 *function)
+{
+ event_map(id, function);
+ return -1;
+} \ No newline at end of file