1 /* 2 * Copyright (c) 2019-2020 Cobham Gaisler AB 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file 9 * @brief Full C support initialization 10 */ 11 12 #include <kernel_internal.h> 13 14 /** 15 * @brief Prepare to and run C code 16 * 17 * This routine prepares for the execution of and runs C code. 18 */ 19 _PrepC(void)20void _PrepC(void) 21 { 22 z_data_copy(); 23 z_cstart(); 24 CODE_UNREACHABLE; 25 } 26