From d415fb232e87c2d14ad1ddbe96880354f90bc523 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Mon, 12 Apr 2021 01:49:45 -0500 Subject: [PATCH] Added missing stdint.h include to physaddr.h --- include/types/physaddr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/types/physaddr.h b/include/types/physaddr.h index 9cf0725..fb00318 100644 --- a/include/types/physaddr.h +++ b/include/types/physaddr.h @@ -1,5 +1,7 @@ #pragma once +#include + #if defined __i386__ || __arm__ typedef uint32_t physaddr_t; #elif defined __x86_64__ || __aarch64__