1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

Kernel: Add O_SYNC into fcntl.h

This commit is contained in:
Tim Schumacher 2022-05-02 19:56:54 +02:00 committed by Andreas Kling
parent 2fc9481bb6
commit 94ab75d3df

View file

@ -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)