summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/crti.S
blob: 0cacb1f102febb8dd709a4624d5ff60e3734bcf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
	.file	"initfini.c"
	
	.section .init
	.align	2
	.global	_init
	.type	_init, %function
_init:
	@ args = 0, pretend = 0, frame = 0
	@ frame_needed = 0, uses_anonymous_args = 0
	str	lr, [sp, #-4]!
	
	.align 2
	
	
	.section .fini
	.align	2
	.global	_fini
	.type	_fini, %function
_fini:
	@ args = 0, pretend = 0, frame = 0
	@ frame_needed = 0, uses_anonymous_args = 0
	str	lr, [sp, #-4]!
	.align 2
	
	
	.ident	"GCC: (GNU) 3.3.2 20031005 (Debian prerelease)"