crtn.S 375 B

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