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
fix use of uninitialized pointer in gettext core
[musl.git]
/
src
/
network
/
connect.c
blob
57f01a1edbea3a8095091ad3a713591147e454e9
1
#include <sys/socket.h>
2
#include
"syscall.h"
3
#include
"libc.h"
4
5
int
connect
(
int
fd
,
const struct
sockaddr
*
addr
,
socklen_t len
)
6
{
7
return
socketcall_cp
(
connect
,
fd
,
addr
,
len
,
0
,
0
,
0
);
8
}