diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-03 10:00:20 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-03 10:00:20 +0000 |
commit | 27cc33c3b483ce4f73cbd3671ba1fd872b473c4d (patch) | |
tree | 0e87d7605777cf04974542ea32d802e4512e6cb4 | |
parent | 80b55d320bae6743130701af3b5c395d21ce748d (diff) | |
download | glibc-27cc33c3b483ce4f73cbd3671ba1fd872b473c4d.tar.gz glibc-27cc33c3b483ce4f73cbd3671ba1fd872b473c4d.tar.xz glibc-27cc33c3b483ce4f73cbd3671ba1fd872b473c4d.zip |
Thu Nov 2 19:24:37 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> cvs/libc-951103
* sysdeps/unix/sysv/linux/i386/sysdep.S (errno): Define as common.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/sysdep.S | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 9e49498afe..efe148bee6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Nov 2 19:24:37 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> + + * sysdeps/unix/sysv/linux/i386/sysdep.S (errno): Define as common. + Tue Oct 31 00:07:29 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> * sysdeps/mach/hurd/getpriority.c (getpriority): Pass diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.S b/sysdeps/unix/sysv/linux/i386/sysdep.S index f5ac8aa017..0f05c84808 100644 --- a/sysdeps/unix/sysv/linux/i386/sysdep.S +++ b/sysdeps/unix/sysv/linux/i386/sysdep.S @@ -23,10 +23,7 @@ Cambridge, MA 02139, USA. */ it somewhere else. ...and this place is here. */ - .data - .globl errno -errno: - .long 0 +.comm errno,4,4 /* The following code is not used at all in the shared library. The PIC system call stubs set errno themselves. */ |