main
mem.h
1/*
2 Copyright 2013 Michael Pavone
3 This file is part of BlastEm.
4 BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text.
5*/
6#ifndef MEM_H_
7#define MEM_H_
8
9#include <stddef.h>
10
11#define PAGE_SIZE 4096
12
13void * alloc_code(size_t *size);
14
15#endif //MEM_H_
16