crtn.S 415 B

1234567891011121314151617181920212223242526272829
  1. .file "initfini.c"
  2. .section .init
  3. .global _init
  4. .type _init,%function
  5. popl %ebx
  6. popl %ebp
  7. ret
  8. .size _init,.-_init
  9. .section .fini
  10. .global _fini
  11. .type _fini,%function
  12. popl %ebx
  13. popl %ebp
  14. ret
  15. .size _fini,.-_fini
  16. .section .gnu.linkonce.t.__get_pc_thunk_bx,"ax",@progbits
  17. .global __get_pc_thunk_bx
  18. .hidden __get_pc_thunk_bx
  19. .type __get_pc_thunk_bx,%function
  20. __get_pc_thunk_bx:
  21. movl (%esp), %ebx
  22. ret