diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-23 21:31:48 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-23 21:31:48 +0300 |
| commit | 960330c5d843d1aa96aa191fc27f72da563293ea (patch) | |
| tree | 2d7ae69d40fa76aeb4f29d3911b7fc2f9341765d /include/arch/types.h | |
| parent | b096078c282af7233062ba242a213e6f5574cfb1 (diff) | |
| download | kmi-960330c5d843d1aa96aa191fc27f72da563293ea.tar.gz kmi-960330c5d843d1aa96aa191fc27f72da563293ea.zip | |
new include structure, make parse easier for doxy
Diffstat (limited to 'include/arch/types.h')
| -rw-r--r-- | include/arch/types.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/arch/types.h b/include/arch/types.h index d8e93a9..c77af6f 100644 --- a/include/arch/types.h +++ b/include/arch/types.h @@ -11,6 +11,10 @@ * \todo Fix incorrect include file reference in doxygen. */ -#include <types.h> +#if defined(riscv64) +#include "../../arch/riscv64/include/types.h" +#elif defined(riscv32) +#include "../../arch/riscv64/include/types.h" +#endif #endif /* APOS_ARCH_TYPES_H */ |
