crtn.S 288 B

123456789101112131415161718
  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. .size _init,.-_init
  9. .section .fini
  10. .global _fini
  11. .type _fini, %function
  12. addq $8, %rsp
  13. ret
  14. .size _fini, .-_fini