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