diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 20:21:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 20:21:24 +0000 |
commit | 1555f102ef6f0a8f080190585c842ba0eba58d63 (patch) | |
tree | d5f86258203f496a9fd103268cd6044f9b43c9bf /sysdeps/unix | |
parent | db601cfcce3187c04674f6a0574a3bc916714a91 (diff) | |
download | glibc-1555f102ef6f0a8f080190585c842ba0eba58d63.tar glibc-1555f102ef6f0a8f080190585c842ba0eba58d63.tar.gz glibc-1555f102ef6f0a8f080190585c842ba0eba58d63.tar.bz2 glibc-1555f102ef6f0a8f080190585c842ba0eba58d63.zip |
Use INTDEF for __connect.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/aix/connect.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/aix/connect.c b/sysdeps/unix/sysv/aix/connect.c index 7fb636dea9..2f58be1ede 100644 --- a/sysdeps/unix/sysv/aix/connect.c +++ b/sysdeps/unix/sysv/aix/connect.c @@ -1,8 +1,11 @@ /* This is a system call. We only have to provide the wrapper. */ #include <sys/socket.h> +#undef __connect + int __connect (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len) { return connect (fd, addr, len); } +INTDEF(__connect) |