crtn.S 204 B

1234567891011121314151617
  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. .section .fini
  10. .align 4
  11. .global _fini
  12. .type _fini, %function
  13. .proc 020
  14. ret
  15. restore