From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:12:57 +0000 (+0000) Subject: AIX implementation of connect. X-Git-Tag: glibc-2.16-ports-merge^2~2630 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3aa78fe2d4a527aa82d12c50413175f0edbb8bac;p=platform%2Fupstream%2Fglibc.git AIX implementation of connect. --- diff --git a/sysdeps/unix/sysv/aix/connect.c b/sysdeps/unix/sysv/aix/connect.c new file mode 100644 index 0000000..7fb636d --- /dev/null +++ b/sysdeps/unix/sysv/aix/connect.c @@ -0,0 +1,8 @@ +/* This is a system call. We only have to provide the wrapper. */ +#include + +int +__connect (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len) +{ + return connect (fd, addr, len); +}