diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/apos/mem_nodes.h | 2 | ||||
| -rw-r--r-- | include/apos/types.h | 2 | ||||
| -rw-r--r-- | include/apos/utils.h | 2 | ||||
| -rw-r--r-- | include/arch/types.h | 16 |
4 files changed, 19 insertions, 3 deletions
diff --git a/include/apos/mem_nodes.h b/include/apos/mem_nodes.h index 5a67f08..f0d1361 100644 --- a/include/apos/mem_nodes.h +++ b/include/apos/mem_nodes.h @@ -2,7 +2,7 @@ #define APOS_MM_NODES_H /** - * @file mem_nodes. + * @file mem_nodes.h * Memory node subsystem. Used by the memory region subsystem. */ diff --git a/include/apos/types.h b/include/apos/types.h index 45526d7..97f663b 100644 --- a/include/apos/types.h +++ b/include/apos/types.h @@ -207,6 +207,6 @@ enum { INFO_CONT = 3, /* continue */ }; -#include <types.h> /* arch-specific type definitions (pm_t/vm_t etc) */ +#include <arch/types.h> /* arch-specific type definitions (pm_t/vm_t etc) */ #endif /* APOS_TYPES_H */ diff --git a/include/apos/utils.h b/include/apos/utils.h index 25f10b0..126a7ae 100644 --- a/include/apos/utils.h +++ b/include/apos/utils.h @@ -2,7 +2,7 @@ #define APOS_UTILS_H /** - * @file utils. + * @file utils.h * Misc utils and helpers. */ diff --git a/include/arch/types.h b/include/arch/types.h new file mode 100644 index 0000000..d8e93a9 --- /dev/null +++ b/include/arch/types.h @@ -0,0 +1,16 @@ +#ifndef APOS_ARCH_TYPES_H +#define APOS_ARCH_TYPES_H + +/** + * @file types.h + * Arch-specific types. + * + * Doxygen thinks types.h if include/apos/types.h, but it's actually + * arch/whatever/include/types.h. Not sure how to fix that. + * + * \todo Fix incorrect include file reference in doxygen. + */ + +#include <types.h> + +#endif /* APOS_ARCH_TYPES_H */ |
