Import Upstream version 20180207
[hcoop/debian/mlton.git] / runtime / platform / use-mmap.c
CommitLineData
7f918cf1
CE
1#include "mmap.c"
2
3void GC_release (void *base, size_t length) {
4 munmap_safe (base, length);
5}
6
7void *GC_mmapAnon (void *start, size_t length) {
8 return mmapAnon (start, length);
9}