diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2021-03-27 12:34:42 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-27 19:43:14 +0100 |
commit | 2fb3c984292ad28651d3ff4c07a4a089debc4df8 (patch) | |
tree | 1d83dae5db360d0277e7e9b0baa48ff4cf3af687 /Userland/Libraries | |
parent | ff32002f2b641aa5f7d47ebdcdd4275735cfeb35 (diff) | |
download | serenity-2fb3c984292ad28651d3ff4c07a4a089debc4df8.zip |
LibC: Define F_GETLK
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibC/fcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |