crtn.S 280 B

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