12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef ZEPHYR_INCLUDE_ARCH_STRUCTS_H_
- #define ZEPHYR_INCLUDE_ARCH_STRUCTS_H_
- #if !defined(_ASMLANGUAGE)
- #if defined(CONFIG_ARM64)
- #include <arch/arm64/structs.h>
- #else
- struct _cpu_arch {
- };
- #endif
- typedef struct _cpu_arch _cpu_arch_t;
- #endif
- #endif
|