summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
Diffstat (limited to 'cpu')
-rw-r--r--cpu/syscall.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpu/syscall.c b/cpu/syscall.c
index 6ad5514..9bf5075 100644
--- a/cpu/syscall.c
+++ b/cpu/syscall.c
@@ -15,6 +15,7 @@
#include <scalls/msleep.h>
#include <scalls/ppoll.h>
#include <scalls/recvfrom.h>
+#include <scalls/sendto.h>
#include <scalls/shm.h>
#include <scalls/socket.h>
#include <scalls/stat.h>
@@ -162,8 +163,8 @@ void (*syscall_functions[])() = {
(void(*))syscall_socket, (void(*))syscall_shm_open,
(void(*))syscall_ftruncate, (void(*))syscall_stat,
(void(*))syscall_msleep, (void(*))syscall_uptime,
- (void(*))syscall_mkdir,
- (void(*))syscall_recvfrom,
+ (void(*))syscall_mkdir, (void(*))syscall_recvfrom,
+ (void(*))syscall_sendto,
};
void syscall_function_handler(uint32_t eax, uint32_t arg1, uint32_t arg2,