blob: 9adf0f237b4115a1dfd90311fa07682a6c8d77dd [file] [log] [blame]
Imre Kis2cfb2b42021-12-15 19:15:42 +01001// SPDX-License-Identifier: BSD-3-Clause
2/*
3 * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
4 */
5
6#include "libc_init.h"
7
8/* Comes from libc */
9void __libc_init_array(void);
10
11void _init(void)
12{
13 /* Dummy */
14}
15
16void libc_init(void)
17{
18 /* Initializing global variables, calling constructors */
19 __libc_init_array();
20}