From: Ulrich Drepper Date: Tue, 9 Dec 1997 23:56:19 +0000 (+0000) Subject: Add __libc_accept as alias. X-Git-Tag: cvs/glibc-2_0_6pre3~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d00708f29e65eee53c1bcc9450b86c2dbf6fa584;p=thirdparty%2Fglibc.git Add __libc_accept as alias. --- diff --git a/sysdeps/unix/sysv/linux/accept.S b/sysdeps/unix/sysv/linux/accept.S index 5936a0185b8..9639986ce42 100644 --- a/sysdeps/unix/sysv/linux/accept.S +++ b/sysdeps/unix/sysv/linux/accept.S @@ -1,2 +1,3 @@ #define socket accept #include +strong_alias (__accept, __libc_accept) diff --git a/sysdeps/unix/sysv/linux/connect.S b/sysdeps/unix/sysv/linux/connect.S index 3433043d8cb..1de78ad0756 100644 --- a/sysdeps/unix/sysv/linux/connect.S +++ b/sysdeps/unix/sysv/linux/connect.S @@ -1,2 +1,3 @@ #define socket connect #include +strong_alias (__connect, __libc_connect) diff --git a/sysdeps/unix/sysv/linux/recv.S b/sysdeps/unix/sysv/linux/recv.S index f1081cc4315..beb128e12f1 100644 --- a/sysdeps/unix/sysv/linux/recv.S +++ b/sysdeps/unix/sysv/linux/recv.S @@ -1,2 +1,3 @@ #define socket recv #include +strong_alias (__recv, __libc_recv) diff --git a/sysdeps/unix/sysv/linux/recvfrom.S b/sysdeps/unix/sysv/linux/recvfrom.S index febaa9ef559..7ff4e0db176 100644 --- a/sysdeps/unix/sysv/linux/recvfrom.S +++ b/sysdeps/unix/sysv/linux/recvfrom.S @@ -1,2 +1,3 @@ #define socket recvfrom #include +strong_alias (__recvfrom, __libc_recvfrom) diff --git a/sysdeps/unix/sysv/linux/recvmsg.S b/sysdeps/unix/sysv/linux/recvmsg.S index ffadd301953..9eeb5c984aa 100644 --- a/sysdeps/unix/sysv/linux/recvmsg.S +++ b/sysdeps/unix/sysv/linux/recvmsg.S @@ -1,2 +1,3 @@ #define socket recvmsg #include +strong_alias (__recvmsg, __libc_recvmsg) diff --git a/sysdeps/unix/sysv/linux/send.S b/sysdeps/unix/sysv/linux/send.S index 52293c6524a..991d39d484b 100644 --- a/sysdeps/unix/sysv/linux/send.S +++ b/sysdeps/unix/sysv/linux/send.S @@ -1,2 +1,3 @@ #define socket send #include +strong_alias (__send, __libc_send) diff --git a/sysdeps/unix/sysv/linux/sendmsg.S b/sysdeps/unix/sysv/linux/sendmsg.S index 65f2c3eb98c..215547c3fcb 100644 --- a/sysdeps/unix/sysv/linux/sendmsg.S +++ b/sysdeps/unix/sysv/linux/sendmsg.S @@ -1,2 +1,3 @@ #define socket sendmsg #include +strong_alias (__sendmsg, __libc_sendmsg) diff --git a/sysdeps/unix/sysv/linux/sendto.S b/sysdeps/unix/sysv/linux/sendto.S index aa637ce9c91..39683be107c 100644 --- a/sysdeps/unix/sysv/linux/sendto.S +++ b/sysdeps/unix/sysv/linux/sendto.S @@ -1,2 +1,3 @@ #define socket sendto #include +strong_alias (__sendto, __libc_sendto)