From 2fb3c984292ad28651d3ff4c07a4a089debc4df8 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Sat, 27 Mar 2021 12:34:42 +0100 Subject: [PATCH] LibC: Define F_GETLK --- Userland/Libraries/LibC/fcntl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibC/fcntl.h b/Userland/Libraries/LibC/fcntl.h index 52956b3820..5d6077cafd 100644 --- a/Userland/Libraries/LibC/fcntl.h +++ b/Userland/Libraries/LibC/fcntl.h @@ -97,6 +97,7 @@ int watch_file(const char* path, size_t path_length); #define F_RDLCK 0 #define F_WRLCK 1 #define F_UNLCK 2 +#define F_GETLK 5 #define F_SETLK 6 #define F_SETLKW 7