mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-07-04 03:39:20 +00:00
Removed "_init" from crt
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user