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

.file	"initfini.c"


.section .init
.globl _init
.type	_init, @function
	addq	$8, %rsp
	ret
.size	_init, .-_init


.section .fini
.globl _fini
.type	_fini, @function
	addq	$8, %rsp
	ret
.size	_fini, .-_fini