1 /*
2  * arch_inlines.h - automatically selects the correct arch_inlines.h file to
3  *   include based on the selected architecture.
4  */
5 
6 /*
7  * Copyright (c) 2019 Stephanos Ioannidis <root@stephanos.io>
8  *
9  * SPDX-License-Identifier: Apache-2.0
10  */
11 
12 #ifndef ZEPHYR_INCLUDE_ARCH_INLINES_H_
13 #define ZEPHYR_INCLUDE_ARCH_INLINES_H_
14 
15 #if defined(CONFIG_X86) || defined(CONFIG_X86_64)
16 #include <arch/x86/arch_inlines.h>
17 #elif defined(CONFIG_ARM64)
18 #include <arch/arm64/arch_inlines.h>
19 #elif defined(CONFIG_ARC)
20 #include <arch/arc/arch_inlines.h>
21 #elif defined(CONFIG_XTENSA)
22 #include <arch/xtensa/arch_inlines.h>
23 #endif
24 
25 #endif /* ZEPHYR_INCLUDE_ARCH_INLINES_H_ */
26