Merge pull request #310 from InstantMuffin/patch-2

Fixed missing include in gdc-psyfork/memoryutils.cpp (r=psychonic).
This commit is contained in:
Nicholas Hastings 2015-03-15 20:22:47 -04:00
commit 660d6201ab

View File

@ -32,6 +32,7 @@
#include <fcntl.h>
#include <link.h>
#include <sys/mman.h>
#include <sys/stat.h>
#define PAGE_SIZE 4096
#define PAGE_ALIGN_UP(x) ((x + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1))