gpsp/memmap.h
David Guillen Fandos 3a7fedb8fb Simplify MMAP machinery for Win/Lin/Mac/Android
This gets rid of the bloated memmap_win32.c in favour of a much simpler
wrapper. This will be needed in the future since the wrapper does not
support MAP_FIXED maps (necessary for some platforms)
2021-11-05 18:23:05 +01:00

7 lines
132 B
C

#ifndef _MEMMAP_H
#define _MEMMAP_H
void *map_jit_block(unsigned size);
void unmap_jit_block(void *bufptr, unsigned size);
#endif