include/fcntl.h: add O_LARGEFILE flags

Signed-off-by: guohao15 <guohao15@xiaomi.com>
This commit is contained in:
guohao15 2023-11-06 18:56:19 +08:00 committed by Xiang Xiao
parent 99c6f2e568
commit fb72fe6364

View File

@ -54,6 +54,7 @@
#define O_CLOEXEC (1 << 10) /* Close on execute */
#define O_DIRECTORY (1 << 11) /* Must be a directory */
#define O_NOFOLLOW (1 << 12) /* Don't follow links */
#define O_LARGEFILE (1 << 13) /* Large File */
#define O_NOATIME (1 << 18) /* Don't update the file last access time */
/* Unsupported, but required open flags */