mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-05 17:42:43 +00:00
Any word started with underscore followed by and uppercase letter or a second underscore is a reserved word according with C99. Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
24 lines
508 B
C
24 lines
508 B
C
/* Intel x86 inline assembler functions and macros for public functions */
|
|
|
|
/*
|
|
* Copyright (c) 2015, Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_ARCH_X86_ASM_INLINE_H_
|
|
#define ZEPHYR_INCLUDE_ARCH_X86_ASM_INLINE_H_
|
|
|
|
/*
|
|
* The file must not be included directly
|
|
* Include kernel.h instead
|
|
*/
|
|
|
|
#if defined(__GNUC__)
|
|
#include <arch/x86/asm_inline_gcc.h>
|
|
#else
|
|
#include <arch/x86/asm_inline_other.h>
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_INCLUDE_ARCH_X86_ASM_INLINE_H_ */
|