cosmopolitan/libc/sysv/consts/msync.h

17 lines
458 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_MSYNC_H_
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_MSYNC_H_
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
extern const int MS_SYNC;
extern const int MS_ASYNC;
extern const int MS_INVALIDATE;
2020-06-15 14:18:57 +00:00
#define MS_SYNC MS_SYNC
2023-08-21 11:15:05 +00:00
#define MS_ASYNC MS_ASYNC
#define MS_INVALIDATE MS_INVALIDATE
2020-06-15 14:18:57 +00:00
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
2020-06-15 14:18:57 +00:00
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_MSYNC_H_ */