diff options
Diffstat (limited to 'src/crt/crtn.s')
| -rw-r--r-- | src/crt/crtn.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/crt/crtn.s b/src/crt/crtn.s new file mode 100644 index 0000000..0e1c314 --- /dev/null +++ b/src/crt/crtn.s @@ -0,0 +1,10 @@ +/* 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 + ret |
