#include <stddef.h>
#include <stdio.h>
#include <sys/mman.h>
void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off)
{
unimplemented();
return MAP_FAILED;
}
int munmap(void *addr, size_t length)
{
unimplemented();
return 0;
}
void *mremap(void *old_address, size_t old_size, size_t new_size, int flags,
... )
{
unimplemented();
return NULL;
}
int mprotect(void *addr, size_t len, int prot)
{
unimplemented();
return 0;
}
int madvise(void *addr, size_t len, int advice)
{
unimplemented();
return 0;
}