From fb72fe6364499f1cd8a0c246dfdd76245f5329c7 Mon Sep 17 00:00:00 2001 From: guohao15 Date: Mon, 6 Nov 2023 18:56:19 +0800 Subject: [PATCH] include/fcntl.h: add O_LARGEFILE flags Signed-off-by: guohao15 --- include/fcntl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fcntl.h b/include/fcntl.h index f49af928af5..132c1ebe9ed 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -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 */