Line data Source code
1 0 : /* 2 : * Copyright (c) 2010-2014 Wind River Systems, Inc. 3 : * Copyright (c) 2017 Oticon A/S 4 : * 5 : * SPDX-License-Identifier: Apache-2.0 6 : */ 7 : 8 : #ifndef ZEPHYR_INCLUDE_ARCH_POSIX_EXPCEPTION_H_ 9 : #define ZEPHYR_INCLUDE_ARCH_POSIX_EXPCEPTION_H_ 10 : 11 : #ifndef _ASMLANGUAGE 12 : #include <zephyr/types.h> 13 : 14 : #ifdef __cplusplus 15 : extern "C" { 16 : #endif 17 : 18 : struct arch_esf { 19 0 : uint32_t dummy; /*maybe we will want to add something someday*/ 20 : }; 21 : 22 : #ifdef __cplusplus 23 : } 24 : #endif 25 : 26 : #endif /* _ASMLANGUAGE */ 27 : 28 : #endif /* ZEPHYR_INCLUDE_ARCH_POSIX_EXPCEPTION_H_ */