Files
libc/include/sys/mman.h
T
2020-07-16 22:49:00 +03:00

7 lines
180 B
C

#pragma once
#include <ygg/mman.h>
#include <sys/types.h>
void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset);
int munmap(void *addr, size_t length);