repo.or.cz
/
glibc
/
history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated to fedora-glibc-20040930T0838
[glibc/history.git]
/
sysdeps
/
unix
/
sysv
/
aix
/
connect.c
blob
2f58be1ede83dbd78f31f50b9661869f577e24dd
1
/* This is a system call. We only have to provide the wrapper. */
2
#include <sys/socket.h>
3
4
#undef __connect
5
6
int
7
__connect
(
int
fd
,
__CONST_SOCKADDR_ARG addr
,
socklen_t len
)
8
{
9
return
connect
(
fd
,
addr
,
len
);
10
}
11
INTDEF
(
__connect
)