summaryrefslogtreecommitdiff
path: root/userland/libc/mmap.c
blob: 06b79bd4d2b3920cfe9b8da6e04f39b9e6d29d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <syscall.h>
#include <errno.h>
#include <sys/mman.h>

extern int errno;

void *mmap(void *addr, size_t length, int prot, int flags, int fd,
           size_t offset) {
  SYS_MMAP_PARAMS args = {
      .addr = addr,
      .length = length,
      .prot = prot,
      .flags = flags,
      .fd = fd,
      .offset = offset,
  };
//  return (void*)syscall(SYS_MMAP, &args);
  RC_ERRNO(syscall(SYS_MMAP, &args));
}