summaryrefslogtreecommitdiffhomepage
path: root/crt/nt64
diff options
context:
space:
mode:
Diffstat (limited to 'crt/nt64')
-rw-r--r--crt/nt64/crti.s8
1 files changed, 4 insertions, 4 deletions
diff --git a/crt/nt64/crti.s b/crt/nt64/crti.s
index 14fdd90..44ecc61 100644
--- a/crt/nt64/crti.s
+++ b/crt/nt64/crti.s
@@ -5,13 +5,11 @@ _pei386_runtime_relocator:
.globl _init
_init:
- call .init
- ret
+ jmp .init
.globl _fini
_fini:
- call .fini
- ret
+ jmp .fini
.section .init
xor %rax,%rax
@@ -39,3 +37,5 @@ _fini:
.long 1
.long 0
.long 0
+ .quad __CTOR_LIST__
+ .quad __DTOR_LIST__