Refactoring 32- and 64-bit subarchitectures, so this file is moved to ia32/ and a new "redirector" header file is introduced. Signed-off-by: Charles E. Youse <charles.youse@intel.com>
14 lines
320 B
C
14 lines
320 B
C
/*
|
|
* Copyright (c) 2019 Intel Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_ARCH_X86_INCLUDE_KERNEL_ARCH_FUNC_H_
|
|
#define ZEPHYR_ARCH_X86_INCLUDE_KERNEL_ARCH_FUNC_H_
|
|
|
|
#ifndef CONFIG_X86_LONGMODE
|
|
#include <ia32/kernel_arch_func.h>
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_ARCH_X86_INCLUDE_KERNEL_ARCH_FUNC_H_ */
|