#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;
};