blob: 11d5e23110156e60c71a217a484fdee44d8a3c21 [file] [log] [blame]
#include <sys/mman.h>
#include "syscall.h"
int mprotect(void *addr, size_t len, int prot)
{
return syscall3(__NR_mprotect, (long)addr, len, prot);
}