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