Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
network
/
bind.c
blob: 07bb669aade2df3ae2fdf3e529c5cc3d97df93d9 [
file
] [
log
] [
blame
]
#include
<sys/socket.h>
#include
"syscall.h"
int
bind
(
int
fd
,
const
struct
sockaddr
*
addr
,
socklen_t
len
)
{
return
socketcall
(
bind
,
fd
,
addr
,
len
,
0
,
0
,
0
);
}