summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/x86_64/crtn.S
blob: 9804e0f76fec86adf0cf1dcae2949e313099e5c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* glibc's sysdeps/x86_64/elf/initfini.c used for reference [EPILOG] */

.file	"initfini.c"

.section .init
.global  _init
.type    _init, %function
	addq $8, %rsp
	ret


.section .fini
.global  _fini
.type    _fini, %function
	addq $8, %rsp
	ret