diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-16 10:06:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-16 10:06:27 +0000 |
commit | 705ce36d85df6a6ab0f881a89797a5a88bd0422a (patch) | |
tree | a892a8176b72693e5e84f66ca93fcb3ed041f94c /libc/sysdeps/linux/i386 | |
parent | 31c580aa61615bcea5625ae884db7ad965bb1829 (diff) |
Added common handling of errno.
Diffstat (limited to 'libc/sysdeps/linux/i386')
-rw-r--r-- | libc/sysdeps/linux/i386/crt0.S | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libc/sysdeps/linux/i386/crt0.S b/libc/sysdeps/linux/i386/crt0.S index 08e406cc6..46d77e09d 100644 --- a/libc/sysdeps/linux/i386/crt0.S +++ b/libc/sysdeps/linux/i386/crt0.S @@ -24,7 +24,6 @@ Cambridge, MA 02139, USA. */ */ .global __environ -.global __errno .global _start .global exit .global main @@ -115,9 +114,3 @@ __environ: .align 4 environ = __environ -.data -__errno: - .long 0 -.weak errno -.align 4 -errno = __errno |