summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/crti.S
blob: 5c05ad34eaee229c6237ffc5cd249005f7dcb9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

.global _init
.section .init
_init:
    push %ebp

.global _fini
.section .fini
_fini:
    push %ebp