summaryrefslogtreecommitdiff
path: root/kernel/scalls/accept.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/scalls/accept.h')
-rw-r--r--kernel/scalls/accept.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/kernel/scalls/accept.h b/kernel/scalls/accept.h
deleted file mode 100644
index d022999..0000000
--- a/kernel/scalls/accept.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "../socket.h"
-
-typedef struct SYS_ACCEPT_PARAMS {
- int socket;
- struct sockaddr *address;
- socklen_t *address_len;
-} __attribute__((packed)) SYS_ACCEPT_PARAMS;
-
-int syscall_accept(SYS_ACCEPT_PARAMS *args);