diff options
author | Andreas Schwab <schwab@suse.de> | 1998-07-01 01:42:09 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-07-01 01:42:09 +0000 |
commit | 0301a08c93709cb9787404f01152d2af04e5c0df (patch) | |
tree | 9bdf52ffb1cfbe1e72002eda32b19a7ec70b3e77 | |
parent | 313a1174164821186241ca4f424a9949986f7b31 (diff) | |
download | glibc-0301a08c93709cb9787404f01152d2af04e5c0df.tar.gz glibc-0301a08c93709cb9787404f01152d2af04e5c0df.tar.xz glibc-0301a08c93709cb9787404f01152d2af04e5c0df.zip |
* sysdeps/unix/sysv/linux/m68k/sysdep.S: Make _errno a weak alias,
not a strong alias. 1998-06-30 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/m68k/sysdep.S: Make _errno a weak alias, not a strong alias. scratch, which is faster and gets correct behaviour if $(subdirs) is incomplete.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/m68k/sysdep.S | 4 |
2 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog index 62068c9387..da802b9402 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-06-30 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> + + * sysdeps/unix/sysv/linux/m68k/sysdep.S: Make _errno a weak alias, + not a strong alias. + 1998-06-30 Ulrich Drepper <drepper@cygnus.com> * posix/Makefile (headers): Remove bits/pthreadtypes.h. @@ -1628,8 +1633,8 @@ 1998-05-18 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makerules (do-makelib): Don't force creating library from - scratch, to avoid wasting time and space and to get correct - behaviour if $(subdirs) is incomplete. + scratch, which is faster and gets correct behaviour if $(subdirs) + is incomplete. 1998-05-19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> diff --git a/sysdeps/unix/sysv/linux/m68k/sysdep.S b/sysdeps/unix/sysv/linux/m68k/sysdep.S index 6008b23aa5..717122ca01 100644 --- a/sysdeps/unix/sysv/linux/m68k/sysdep.S +++ b/sysdeps/unix/sysv/linux/m68k/sysdep.S @@ -30,9 +30,7 @@ .type errno,@object errno: .space 4 .size errno,4 - .globl _errno - .type _errno,@object -_errno = errno /* This name is expected by hj's libc.so.5 startup code. */ +weak_alias (errno, _errno) .text /* The following code is only used in the shared library when we |