/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: AuHeap.cpp Date: 2021-6-12 Author: Reece ***/ #include #include "AuHeap.hpp" namespace Aurora::Memory { AuUInt32 RoundPageUp(AuUInt32 uLength) { return AuPageRoundUp(uLength, HWInfo::GetPageSize()); } }