diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-29 22:11:16 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-29 22:11:16 -0500 |
commit | 13bb57688e25836d85c9290b84ca5e0b38e7c83c (patch) | |
tree | 30860345090db2b8ae8248bc08b33b062822491e /sys/include | |
parent | 69acd1f2cfdbf7ded636a8ec098a1dcc86fecdb0 (diff) |
kernel/amd64: frame: Add missing include
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/arch/amd64/frame.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/include/arch/amd64/frame.h b/sys/include/arch/amd64/frame.h index 78c32f4..a2e1a05 100644 --- a/sys/include/arch/amd64/frame.h +++ b/sys/include/arch/amd64/frame.h @@ -31,6 +31,9 @@ #define _AMD64_FRAME_H_ #if !defined(__ASSEMBLER__) + +#include <sys/types.h> + struct trapframe { uint64_t trapno; uint64_t rax; |