diff options
author | midipix <writeonce@midipix.org> | 2016-06-03 01:52:44 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-03 01:54:55 -0400 |
commit | a8eba8571657c3302d48b978e1ac30af6667b20a (patch) | |
tree | 6bd795d87855a45804c8b3c7d0606ea685f41b62 /crt | |
parent | c8fc57a19870661f62034a746d36817608683f21 (diff) | |
download | mmglue-a8eba8571657c3302d48b978e1ac30af6667b20a.tar.bz2 mmglue-a8eba8571657c3302d48b978e1ac30af6667b20a.tar.xz |
nt32: crtn.s: _pei386_runtime_relocator(): add ABI's leading underscore.
Diffstat (limited to 'crt')
-rw-r--r-- | crt/nt32/crtn.s | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crt/nt32/crtn.s b/crt/nt32/crtn.s index 8658d23..d639992 100644 --- a/crt/nt32/crtn.s +++ b/crt/nt32/crtn.s @@ -1,10 +1,10 @@ .text -.globl _pei386_runtime_relocator -_pei386_runtime_relocator: +.globl __pei386_runtime_relocator +__pei386_runtime_relocator: ret - .section .got$_pei386_runtime_relocator,"r" - .global __imp__pei386_runtime_relocator -__imp__pei386_runtime_relocator: - .long _pei386_runtime_relocator + .section .got$__pei386_runtime_relocator,"r" + .global __imp___pei386_runtime_relocator +__imp___pei386_runtime_relocator: + .long __pei386_runtime_relocator .linkonce discard |