Luna/libc/include/bits/mmap.h

14 lines
172 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
#include <sys/types.h>
struct mmap_params
{
void* addr;
size_t len;
int prot;
int flags;
int fd;
off_t offset;
};