change ldso path file logic to replace rather than add to search path
[oweals/musl.git] / src / network / accept.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int accept(int fd, struct sockaddr *restrict addr, socklen_t *restrict len)
6 {
7         return socketcall_cp(accept, fd, addr, len, 0, 0, 0);
8 }