summaryrefslogtreecommitdiff
path: root/src/linux/accept4.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/accept4.c')
-rw-r--r--src/linux/accept4.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/linux/accept4.c b/src/linux/accept4.c
deleted file mode 100644
index 6b5c16ce..00000000
--- a/src/linux/accept4.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#define _GNU_SOURCE
-#include <sys/socket.h>
-#include "syscall.h"
-#include "libc.h"
-
-int accept4(int fd, struct sockaddr *restrict addr, socklen_t *restrict len, int flg)
-{
- return socketcall_cp(accept4, fd, addr, len, flg, 0, 0);
-}