summaryrefslogtreecommitdiff
path: root/src/sys/mman/mprotect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/mman/mprotect.c')
-rw-r--r--src/sys/mman/mprotect.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/sys/mman/mprotect.c b/src/sys/mman/mprotect.c
deleted file mode 100644
index e2aa6b3b..00000000
--- a/src/sys/mman/mprotect.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <sys/mman.h>
-
-int mprotect(void *addr, size_t len, int prot)
-{
- return prot;
-}
-
-/*
-XOPEN(400)
-POSIX(199309)
-*/