Update.
authorAndreas Schwab <schwab@suse.de>
Mon, 20 Jul 1998 05:03:25 +0000 (05:03 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 20 Jul 1998 05:03:25 +0000 (05:03 +0000)
1998-07-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

* sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h: New file.

* sysdeps/unix/sysv/linux/m68k/socket.S: Support NO_WEAK_ALIAS.

ChangeLog
sysdeps/unix/sysv/linux/m68k/socket.S

index 04cb9ad..fe9d421 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1998-07-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
+
+       * sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h: New file.
+
+       * sysdeps/unix/sysv/linux/m68k/socket.S: Support NO_WEAK_ALIAS.
+
 1998-07-17  Ulrich Drepper  <drepper@cygnus.com>
 
        * debug/catchsegv.sh: Fix several stupid bugs.
index f25a55b..767665c 100644 (file)
    The .S files for the other calls just #define socket and #include this.  */
 
 #ifndef __socket
+#ifndef NO_WEAK_ALIAS
 #define __socket P(__,socket)
+#else
+#define __socket socket
+#endif
 #endif
 
 .globl __socket
@@ -62,4 +66,6 @@ ENTRY (__socket)
        rts
 PSEUDO_END (__socket)
 
+#ifndef NO_WEAK_ALIAS
 weak_alias (__socket, socket)
+#endif