Xyris  0.5
crtn.s
Go to the documentation of this file.
1 ; x86 crtn.S
2 section .init
3  ; gcc will nicely put the contents of crtend.o's .init section here.
4  pop ebp
5  ret
6 
7 section .fini
8  ; gcc will nicely put the contents of crtend.o's .fini section here.
9  pop ebp
10  ret