2022-11-12 21:04:47 +02:00
|
|
|
/* x86 crtn.s */
|
|
|
|
.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
|