diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/sysdep.S')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/sysdep.S | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.S b/sysdeps/unix/sysv/linux/i386/sysdep.S index f7eac4d225..180c42506e 100644 --- a/sysdeps/unix/sysv/linux/i386/sysdep.S +++ b/sysdeps/unix/sysv/linux/i386/sysdep.S @@ -25,12 +25,14 @@ it somewhere else. ...and this place is here. */ - .data + .bss .globl errno + .type errno,@object + .size errno,4 errno: + .space 4 .globl _errno -_errno: - .long 4 +_errno = errno /* The following code is only used in the shared library when we compile the reentrant version. Otherwise each system call defines |