summaryrefslogtreecommitdiff
path: root/kernel/syscalls/accept.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls/accept.c')
-rw-r--r--kernel/syscalls/accept.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/kernel/syscalls/accept.c b/kernel/syscalls/accept.c
deleted file mode 100644
index 0be578c..0000000
--- a/kernel/syscalls/accept.c
+++ /dev/null
@@ -1,5 +0,0 @@
-#include <syscalls.h>
-
-int syscall_accept(SYS_ACCEPT_PARAMS *args) {
- return accept(args->socket, args->address, args->address_len);
-}