Usermode/crt0 - Replaced crtbegin/crtend with crti/crtn
[tpg/acess2.git] / Usermode / Libraries / crt0.o_src / x86-crti.S
1 .section .init
2 .global _init
3 .type _init, @function
4 _init:
5         push %ebp
6         movl %esp, %ebp
7         /* gcc will nicely put the contents of crtbegin.o's .init section here. */
8
9 .section .fini
10 .global _fini
11 .type _fini, @function
12 _fini:
13         push %ebp
14         movl %esp, %ebp
15         /* gcc will nicely put the contents of crtbegin.o's .fini section here. */

UCC git Repository :: git.ucc.asn.au