1 /* 2 * Copyright (c) 2023 Codecoup 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/fatal.h> 8 #include <zephyr/kernel.h> 9 z_fatal_error(unsigned int reason,const z_arch_esf_t * esf)10void z_fatal_error(unsigned int reason, const z_arch_esf_t *esf) 11 { 12 ztest_test_fail(); 13 } 14