cosmopolitan/libc/isystem/sys/mman.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
543 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef LIBC_ISYSTEM_SYS_MMAN_H_
#define LIBC_ISYSTEM_SYS_MMAN_H_
#include "libc/calls/calls.h"
#include "libc/calls/weirdtypes.h"
#include "libc/runtime/runtime.h"
2020-06-15 14:18:57 +00:00
#include "libc/sysv/consts/map.h"
#include "libc/sysv/consts/mlock.h"
#include "libc/sysv/consts/msync.h"
#include "libc/sysv/consts/posix.h"
2022-08-06 16:56:17 +00:00
#include "libc/sysv/consts/prot.h"
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
#include "libc/sysv/consts/madv.h"
#endif
#if defined(_GNU_SOURCE)
#include "libc/sysv/consts/mfd.h"
2020-06-15 14:18:57 +00:00
#include "libc/sysv/consts/mremap.h"
#endif
#endif