1#include <errno.h>
2#include <sys/mman.h>
3
4int munlock(const void* addr, size_t len) {
5    errno = ENOSYS;
6    return -1;
7}
8