repo.or.cz
/
glibc-ports.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
(ELF_MACHINE_NO_RELA): Define unconditionally to defined RTLD_BOOTSTRAP.
[glibc-ports.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
)