repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
riscv32: add dlsym
[musl.git]
/
src
/
network
/
accept.c
blob
a92406fa7315c89cf5b2d3e6d0299a3de65f315f
1
#include <sys/socket.h>
2
#include
"syscall.h"
3
4
int
accept
(
int
fd
,
struct
sockaddr
*
restrict addr
,
socklen_t
*
restrict len
)
5
{
6
return
socketcall_cp
(
accept
,
fd
,
addr
,
len
,
0
,
0
,
0
);
7
}