blob: 4a25af38c49a6c4ac848c3d8e3976566d11e8af3 [file] [log] [blame]
#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(accept, fd, addr, len, 0, 0, 0);
}