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>
@@ -8,4 +9,6 @@ typedef uint32_t physaddr_t;
typedef uint64_t physaddr_t;
#else
typedef uint64_t physaddr_t;
#endif
#endif