blob: 28988d5c5ffd303f28eeb58b993f08e336674f3c [file] [log] [blame]
Imre Kis217192d2021-12-17 14:04:43 +01001/* SPDX-License-Identifier: BSD-3-Clause */
2/*
3 * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
4 */
5
6#ifndef LIBC_INIT_H_
7#define LIBC_INIT_H_
8
9/*
10 * Generic libc init function. Implemented by the newlib external, should be called by the
11 * environment on boot.
12 */
13void libc_init(void);
14
15#endif /* LIBC_INIT_H_ */