Files
musl/src/network/accept.c

9 lines
199 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/socket.h>
#include "syscall.h"
#include "libc.h"
int accept(int fd, struct sockaddr *restrict addr, socklen_t *restrict len)
2011-02-12 00:22:29 -05:00
{
return socketcall_cp(accept, fd, addr, len, 0, 0, 0);
2011-02-12 00:22:29 -05:00
}