From 94ab75d3df0c157e2d08f58b8e8a56eebdd6a3c9 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Mon, 2 May 2022 19:56:54 +0200 Subject: [PATCH] Kernel: Add `O_SYNC` into `fcntl.h` --- Kernel/API/POSIX/fcntl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/API/POSIX/fcntl.h b/Kernel/API/POSIX/fcntl.h index 2a8bdfca5c..9b6fb615ce 100644 --- a/Kernel/API/POSIX/fcntl.h +++ b/Kernel/API/POSIX/fcntl.h @@ -39,6 +39,7 @@ extern "C" { #define O_NOFOLLOW (1 << 10) #define O_CLOEXEC (1 << 11) #define O_DIRECT (1 << 12) +#define O_SYNC (1 << 13) #define F_RDLCK ((short)0) #define F_WRLCK ((short)1)