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, 11 insertions, 0 deletions
diff --git a/src/sys/mman/munmap.c b/src/sys/mman/munmap.c
new file mode 100644
index 00000000..0e20123f
--- /dev/null
+++ b/src/sys/mman/munmap.c
@@ -0,0 +1,11 @@
+#include <sys/mman.h>
+
+int munmap(void*addr, size_t len)
+{
+ return 0;
+}
+
+/*
+XOPEN(400)
+POSIX(19xxyy)
+*/