blob: 1a12aaa567acfc54b05a079adb8291104b77e768 [file] [log] [blame]
#include <errno.h>
#include <sys/mman.h>
int munlock(const void* addr, size_t len) {
errno = ENOSYS;
return -1;
}