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