chiark / gitweb /
[PATCH] update klibc to version 0.181
[elogind.git] / klibc / klibc / arch / arm / crt0.S
1 #
2 # arch/arm/crt0.S
3 #
4 # void _start(void)
5 # {
6 #    __libc_init(elf_structure, atexit_ptr);
7 # }
8 #
9
10         .text
11         .align 4
12         .type _start,#function
13         .globl _start
14
15 #ifdef __thumb__
16         .thumb_func
17 #endif
18
19 _start: mov     r0, sp
20         mov     r1, #0
21         bl      __libc_init
22
23         .size _start,.-_start