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