summaryrefslogtreecommitdiff
path: root/libc/arch/i386/crti.s
blob: 906414b6f1dd9bf035a70ff77b6bee0b36d462ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.section .init

.global _init
.type _init, @function
_init:
        pushl %ebp
        movl %esp, %ebp

.section .fini

.global _fini
_fini:
        pushl %ebp
        movl %esp, %ebp