From cc56203b76e1fcef2c7e55b460daf07e654a1547 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 5 Nov 2012 00:28:57 +0200 Subject: 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 --- frontend/linux/plat_mmap.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 frontend/linux/plat_mmap.h (limited to 'frontend/linux/plat_mmap.h') 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 + +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); -- cgit v1.2.3