crtn.S 247 B

12345678910111213141516
  1. /* glibc's sysdeps/x86_64/elf/initfini.c used for reference [EPILOG] */
  2. .file "initfini.c"
  3. .section .init
  4. .global _init
  5. .type _init, %function
  6. addq $8, %rsp
  7. ret
  8. .section .fini
  9. .global _fini
  10. .type _fini, %function
  11. addq $8, %rsp
  12. ret