diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2017-10-28 21:31:07 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2017-10-28 21:31:07 +0000 |
commit | 304de858fd8cf910c1fd24b570fba187f7e84c1d (patch) | |
tree | 7e3906996d4bc8090383af7305df2ecc3345e962 /lib/libc/arch | |
parent | 94c8d2ae4bbe4a85330ad6c4bc5339d831c93caa (diff) |
Typo: 'end' should have been '_end', which is already exported/imported.
Also, '_memcpy' and '_stack' were specific to arm and should not have been
copied here
Diffstat (limited to 'lib/libc/arch')
-rw-r--r-- | lib/libc/arch/aarch64/Symbols.list | 3 | ||||
-rw-r--r-- | lib/libc/arch/aarch64/sys/brk.S | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/lib/libc/arch/aarch64/Symbols.list b/lib/libc/arch/aarch64/Symbols.list index 3ee01d71eae..e0e241bf649 100644 --- a/lib/libc/arch/aarch64/Symbols.list +++ b/lib/libc/arch/aarch64/Symbols.list @@ -9,7 +9,4 @@ _fpsetmask _fpsetround _fpsetsticky _mcount -_memcpy -_stack -end fabsl diff --git a/lib/libc/arch/aarch64/sys/brk.S b/lib/libc/arch/aarch64/sys/brk.S index 22801bd770c..874eaea4eb9 100644 --- a/lib/libc/arch/aarch64/sys/brk.S +++ b/lib/libc/arch/aarch64/sys/brk.S @@ -1,4 +1,4 @@ -/* $OpenBSD: brk.S,v 1.2 2017/03/18 12:50:13 kettenis Exp $ */ +/* $OpenBSD: brk.S,v 1.3 2017/10/28 21:31:06 guenther Exp $ */ /* $NetBSD: brk.S,v 1.7 2003/12/26 11:23:44 martin Exp $ */ /*- @@ -34,7 +34,7 @@ #include "SYS.h" - .globl _C_LABEL(end) + .globl _C_LABEL(_end) .globl __curbrk .data |