2024-03-26 02:48:26 +02:00
|
|
|
/* i686 crtn.s */
|
2022-11-12 21:04:47 +02:00
|
|
|
.section .init
|
|
|
|
/* gcc will nicely put the contents of crtend.o's .init section here. */
|
|
|
|
popl %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
.section .fini
|
|
|
|
/* gcc will nicely put the contents of crtend.o's .fini section here. */
|
|
|
|
popl %ebp
|
2022-11-12 21:30:26 +02:00
|
|
|
ret
|
2024-08-26 14:04:58 +03:00
|
|
|
|
|
|
|
.section .init_array
|
|
|
|
.global __init_array_end
|
|
|
|
__init_array_end:
|
|
|
|
|
|
|
|
.section .fini_array
|
|
|
|
.global __fini_array_end
|
|
|
|
__fini_array_end:
|