summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/arch/aarch64/crti.S
blob: 660ba90bf68c5d25f64643e458334ee529864cae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2021, Nico Weber <thakis@chromium.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

.section .init, "ax", @progbits
.p2align 2
.global _init
.type _init, @function
_init:
    # FIXME: Possibly incomplete.
    ret

.section .fini, "ax", @progbits
.p2align 4
.global _fini
.type _fini, @function
_fini:
    # FIXME: Possibly incomplete.
    ret