/* * SPDX-FileCopyrightText: 2019 Gunar Schorcht * SPDX-License-Identifier: LGPL-2.1-only */ #pragma once /** * @ingroup cpu_esp_common * @{ * * @file * @brief Exception handling for ESP SoCs * * @author Gunar Schorcht * @} */ #ifdef __cplusplus extern "C" { #endif /** Initialize exception handler */ extern void init_exceptions(void); #ifdef __cplusplus } #endif