Added missing stdint.h include to physaddr.h

This commit is contained in:
2021-04-12 01:49:45 -05:00
parent 470f6b2d99
commit d415fb232e

View File

@@ -1,5 +1,7 @@
#pragma once #pragma once
#include <stdint.h>
#if defined __i386__ || __arm__ #if defined __i386__ || __arm__
typedef uint32_t physaddr_t; typedef uint32_t physaddr_t;
#elif defined __x86_64__ || __aarch64__ #elif defined __x86_64__ || __aarch64__