Imre Kis | 217192d | 2021-12-17 14:04:43 +0100 | [diff] [blame] | 1 | /* 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 | */ | ||||
13 | void libc_init(void); | ||||
14 | |||||
15 | #endif /* LIBC_INIT_H_ */ |