blob: 9450a6868503456a47ab3dce617afbec1694d093 [file] [log] [blame]
Imre Kise6d73412021-10-18 14:01:47 +02001// SPDX-License-Identifier: BSD-3-Clause
2/*
3 * Copyright (c) 2021, 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}