floatscan: fix incorrect count of leading nonzero digits
[musl] / crt / i386 / crt1.s
index 050adec..66ee11a 100644 (file)
@@ -1,3 +1,5 @@
+.weak _init
+.weak _fini
 .text
 .global _start
 _start:
@@ -8,10 +10,13 @@ _start:
        pushl %esp
        pushl %esp
        pushl %edx
-       pushl $0
-       pushl $0
+       call 1f
+1:     addl $[_fini-.],(%esp)
+       call 1f
+1:     addl $[_init-.],(%esp)
        pushl %eax
        pushl %ecx
-       pushl $main
+       call 1f
+1:     addl $[main-.],(%esp)
        call __libc_start_main
-.L0:   jmp .L0
+1:     jmp 1b