summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/aix/connect.c
blob: 7fb636dea92ee08630d37dcce7d6c33d665ff879 (plain)
1
2
3
4
5
6
7
8
/* This is a system call.  We only have to provide the wrapper.  */
#include <sys/socket.h>

int
__connect (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len)
{
  return connect (fd, addr, len);
}