blob: 8c8c02553bac44ecec2910e994ea3202ece6bc30 (
plain)
1
2
3
4
5
6
7
8
|
#include <sys/socket.h>
#include "syscall.h"
#include "libc.h"
int accept(int fd, struct sockaddr *restrict addr, socklen_t *restrict len)
{
return socketcall_cp(accept4, fd, addr, len, 0, 0, 0);
}
|