[*] Add missing header

This commit is contained in:
Reece Wilson 2022-01-24 21:37:50 +00:00
parent 299a1c5312
commit a0d38ff168
3 changed files with 18 additions and 3 deletions

View File

@ -7,10 +7,11 @@
***/ ***/
#include <Source/RuntimeInternal.hpp> #include <Source/RuntimeInternal.hpp>
#include "Process.hpp" #include "Process.hpp"
#if defined(AURORA_IS_POSIX_DERIVED) #if defined(AURORA_IS_POSIX_DERIVED)
#include <stdlib.h> #include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#endif #endif
#if defined(AURORA_PLATFORM_WIN32) #if defined(AURORA_PLATFORM_WIN32)

View File

@ -1,3 +1,10 @@
/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: ProcessMap.cpp
Date: 2022-1-23
Author: Reece
***/
#include <Source/RuntimeInternal.hpp> #include <Source/RuntimeInternal.hpp>
#include "ProcessMap.hpp" #include "ProcessMap.hpp"

View File

@ -1,3 +1,10 @@
/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: ProcessMap.hpp
Date: 2022-1-23
Author: Reece
***/
#pragma once #pragma once
namespace Aurora::Process namespace Aurora::Process