crti.S 233 B

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