From 253a32e2f9ff1cbb8edbe7c79834a678daebeb93 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 9 Feb 2019 13:14:01 -0500 Subject: merge POSIX.1-1988/1990 --- src/fcntl/struct_flock.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/fcntl/struct_flock.c (limited to 'src/fcntl/struct_flock.c') diff --git a/src/fcntl/struct_flock.c b/src/fcntl/struct_flock.c new file mode 100644 index 00000000..c910e0ff --- /dev/null +++ b/src/fcntl/struct_flock.c @@ -0,0 +1,13 @@ +#include + +struct flock { + short l_type; + short l_whence; + off_t l_start; + off_t l_len; + pid_t l_pid; +}; + +/* +POSIX(1) +*/ -- cgit v1.2.1