From 09de487a67e882dd916ef5efafe3edef414f0c9c Mon Sep 17 00:00:00 2001 From: david-on-debian Date: Tue, 20 May 2025 20:49:59 -0500 Subject: [PATCH] Upload files to "/" --- crtn.s | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 crtn.s 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