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