aboutsummaryrefslogtreecommitdiff
path: root/frontend/linux/plat_mmap.h
diff options
context:
space:
mode:
authornotaz2012-11-05 00:28:57 +0200
committernotaz2012-11-05 03:12:25 +0200
commitcc56203b76e1fcef2c7e55b460daf07e654a1547 (patch)
tree676013793bf5d42bdc6ef629385b07620e907bef /frontend/linux/plat_mmap.h
parent0e2e3f498456d1175916ecd69d0a9e80e701e760 (diff)
downloadpcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.gz
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.bz2
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.zip
switch over to libpicofe
- libretro should not be affected by this, all others need to do 'git submodule init && git submodule update' from now on. - pandora should get gamma control support
Diffstat (limited to 'frontend/linux/plat_mmap.h')
-rw-r--r--frontend/linux/plat_mmap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/linux/plat_mmap.h b/frontend/linux/plat_mmap.h
new file mode 100644
index 0000000..175246e
--- /dev/null
+++ b/frontend/linux/plat_mmap.h
@@ -0,0 +1,5 @@
+#include <stdlib.h>
+
+void *plat_mmap(unsigned long addr, size_t size, int need_exec, int is_fixed);
+void *plat_mremap(void *ptr, size_t oldsize, size_t newsize);
+void plat_munmap(void *ptr, size_t size);