crti.S 221 B

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