blob: 9bd8f57a0f32de74db390bed6c0cfa57b4cd05d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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);
}
|