summaryrefslogtreecommitdiff
path: root/src/linux/accept4.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-29 17:40:42 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-29 17:40:42 -0400
commitdc62790deec183697489d5fddea03c82f725e7fd (patch)
tree0a86683bd8a0a558a5789e2ccaa45ae29856bd25 /src/linux/accept4.c
parent79a5e73e518213d5e77a06cfc0db74ffbf7922c6 (diff)
downloadmusl-dc62790deec183697489d5fddea03c82f725e7fd.tar.gz
move accept4, dup3, and pipe2 to non-linux-specific locations
these interfaces have been adopted by the Austin Group for inclusion in the next version of POSIX.
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);
-}