Use INTDEF for __connect.
authorUlrich Drepper <drepper@redhat.com>
Tue, 9 Apr 2002 20:21:24 +0000 (20:21 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 9 Apr 2002 20:21:24 +0000 (20:21 +0000)
sysdeps/unix/sysv/aix/connect.c

index 7fb636d..2f58be1 100644 (file)
@@ -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)