crtn.S 248 B

12345678910111213141516171819
  1. .file "initfini.c"
  2. .section .init
  3. .align 4
  4. .global _init
  5. .type _init, %function
  6. .proc 020
  7. ret
  8. restore
  9. .size _init, .-_init
  10. .section .fini
  11. .align 4
  12. .global _fini
  13. .type _fini, %function
  14. .proc 020
  15. ret
  16. restore
  17. .size _fini, .-_fini