/* * arch_inlines.h - automatically selects the correct arch_inlines.h file to * include based on the selected architecture. */ /* * Copyright (c) 2019 Stephanos Ioannidis * * SPDX-License-Identifier: Apache-2.0 */ #ifndef ZEPHYR_INCLUDE_ARCH_INLINES_H_ #define ZEPHYR_INCLUDE_ARCH_INLINES_H_ #if defined(CONFIG_X86) || defined(CONFIG_X86_64) #include #elif defined(CONFIG_ARM64) #include #elif defined(CONFIG_ARC) #include #elif defined(CONFIG_XTENSA) #include #endif #endif /* ZEPHYR_INCLUDE_ARCH_INLINES_H_ */