diff options
author | midipix <writeonce@midipix.org> | 2016-06-03 03:24:55 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-03 03:24:55 -0400 |
commit | 78e4c0f8c4bb6fcde040ec72d2c630d8cf516450 (patch) | |
tree | 0410c8a9f5ec2d3e0c3e43eaffbda35e83c40e74 /crt/nt64 | |
parent | a8eba8571657c3302d48b978e1ac30af6667b20a (diff) | |
download | mmglue-78e4c0f8c4bb6fcde040ec72d2c630d8cf516450.tar.bz2 mmglue-78e4c0f8c4bb6fcde040ec72d2c630d8cf516450.tar.xz |
nt64: crte.s: so_entry_point: protect 32-bit name-space (adds underscore).
Diffstat (limited to 'crt/nt64')
-rw-r--r-- | crt/nt64/crte.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crt/nt64/crte.s b/crt/nt64/crte.s index 152004e..cdfd8a1 100644 --- a/crt/nt64/crte.s +++ b/crt/nt64/crte.s @@ -1,6 +1,6 @@ .text -.globl _so_entry_point -_so_entry_point: +.globl __so_entry_point +__so_entry_point: cmp $0x1,%edx jne dso_main_routine mov %edx,%eax @@ -14,7 +14,7 @@ __dso_main_routine: .set dso_main_routine,__dso_main_routine .section .midipix - .quad _so_entry_point + .quad __so_entry_point .quad dso_main_routine .quad 0 .quad 0 |