summaryrefslogtreecommitdiffhomepage
path: root/crt/nt32
diff options
context:
space:
mode:
Diffstat (limited to 'crt/nt32')
-rw-r--r--crt/nt32/crti.s8
1 files changed, 4 insertions, 4 deletions
diff --git a/crt/nt32/crti.s b/crt/nt32/crti.s
index 7b1a642..1b484b0 100644
--- a/crt/nt32/crti.s
+++ b/crt/nt32/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 %eax,%eax
@@ -39,3 +37,5 @@ __fini:
.long 1
.long 0
.long 0
+ .long __CTOR_LIST__
+ .long __DTOR_LIST__