From f76b8cab4327f9ee58f4a06d17133ea9edd3d082 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Tue, 23 Aug 2022 12:55:07 -0500 Subject: [PATCH] Changed #include guards in physaddr.h --- include/types/physaddr.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/types/physaddr.h b/include/types/physaddr.h index fb00318..6631873 100644 --- a/include/types/physaddr.h +++ b/include/types/physaddr.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef _QUARK_PHYSADDR_H +#define _QUARK_PHYSADDR_H #include @@ -8,4 +9,6 @@ typedef uint32_t physaddr_t; typedef uint64_t physaddr_t; #else typedef uint64_t physaddr_t; +#endif + #endif \ No newline at end of file