abis/mlibc: Define additional constants used by mmap and related fcntl calls

Signed-off-by: Dennisbonke <admin@dennisbonke.com>
This commit is contained in:
Dennisbonke 2020-09-05 02:11:22 +02:00
parent 90a0df83df
commit f8c21fad6e
No known key found for this signature in database
GPG key ID: F456F05FBF825330

View file

@ -22,4 +22,10 @@
// constants for fcntl()'s additional argument of F_GETFD and F_SETFD
#define FD_CLOEXEC 1
// Used by mmap
#define F_SEAL_SHRINK 0x0002
#define F_SEAL_GROW 0x0004
#define F_SEAL_WRITE 0x0008
#define F_GET_SEALS 1034
#endif // _ABITBITS_FCNTL_H