diff --git a/crtn.s b/crtn.s new file mode 100644 index 0000000..33957bf --- /dev/null +++ b/crtn.s @@ -0,0 +1,9 @@ +.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 + ret