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/arm/crt0.S | |
parent | 31c580aa61615bcea5625ae884db7ad965bb1829 (diff) |
Added common handling of errno.
Diffstat (limited to 'libc/sysdeps/linux/arm/crt0.S')
-rw-r--r-- | libc/sysdeps/linux/arm/crt0.S | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/arm/crt0.S b/libc/sysdeps/linux/arm/crt0.S index 3944bd34c..90478fa59 100644 --- a/libc/sysdeps/linux/arm/crt0.S +++ b/libc/sysdeps/linux/arm/crt0.S @@ -53,14 +53,9 @@ _start: .data .align 2 - .global __errno, __environ + .global __environ __environ: .long 0 .weak environ environ = __environ -__errno: .long 0 -.weak errno -errno = __errno - - |