Removed "_init" from crt

This commit is contained in:
Alex 2022-12-07 14:03:14 +02:00
parent 2b57c3126a
commit fb075aa713
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
3 changed files with 2 additions and 4 deletions

View File

@ -12,7 +12,6 @@ _start:
pushq %rdi
call __libc_init
call _init
popq %rdi
popq %rsi

View File

@ -12,7 +12,6 @@ _start:
pushq %rdi
call __libc_init
call _init
popq %rdi
popq %rsi

View File

@ -1,7 +1,7 @@
extern void __libc_init_array();
extern void __libc_init_array(void);
void __libc_init()
void __libc_init(void)
{
__libc_init_array();
}