@@ -1,14 +1,16 @@
/* glibc's sysdeps/x86_64/elf/initfini.c used for reference [PROLOG] */
+
.section .init
-.globl _init
-.type _init, @function
+.global _init
+.type _init, @function
_init:
subq $8, %rsp
.section .fini
-.globl _fini
-.type _fini, @function
+.global _fini
+.type _fini, @function
_fini:
@@ -2,18 +2,17 @@
.file "initfini.c"
-
- addq $8, %rsp
+ addq $8, %rsp
ret
-.size _init, .-_init
+.size _init,.-_init
-.size _fini, .-_fini
+.size _fini, .-_fini