#include "platform.h" void *cc4group_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) { return mmap(start, length, prot, flags, fd, offset); } int cc4group_munmap(void *addr, size_t length) { return munmap(addr, length); }