Changed #include guards in physaddr.h

This commit is contained in:
2022-08-23 12:55:07 -05:00
parent 2cc9c6942e
commit f76b8cab43

View File

@@ -1,4 +1,5 @@
#pragma once #ifndef _QUARK_PHYSADDR_H
#define _QUARK_PHYSADDR_H
#include <stdint.h> #include <stdint.h>
@@ -9,3 +10,5 @@ typedef uint64_t physaddr_t;
#else #else
typedef uint64_t physaddr_t; typedef uint64_t physaddr_t;
#endif #endif
#endif