mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-27 15:04:25 +00:00
Removed "_init" from crt
This commit is contained in:
parent
2b57c3126a
commit
fb075aa713
@ -12,7 +12,6 @@ _start:
|
||||
pushq %rdi
|
||||
|
||||
call __libc_init
|
||||
call _init
|
||||
|
||||
popq %rdi
|
||||
popq %rsi
|
||||
|
@ -12,7 +12,6 @@ _start:
|
||||
pushq %rdi
|
||||
|
||||
call __libc_init
|
||||
call _init
|
||||
|
||||
popq %rdi
|
||||
popq %rsi
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user