Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
network
/
connect.c
blob: 170a12037d05c1a0e7ebcc787f9377b2d13070d6 [
file
] [
log
] [
blame
]
#include
<sys/socket.h>
#include
"syscall.h"
#include
"libc.h"
int
connect
(
int
fd
,
const
struct
sockaddr
*
addr
,
socklen_t
len
)
{
return
socketcall_cp
(
connect
,
fd
,
addr
,
len
,
0
,
0
,
0
);
}