diff options
Diffstat (limited to 'src/fcntl/struct_flock.h')
| -rw-r--r-- | src/fcntl/struct_flock.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/fcntl/struct_flock.h b/src/fcntl/struct_flock.h new file mode 100644 index 00000000..c910e0ff --- /dev/null +++ b/src/fcntl/struct_flock.h @@ -0,0 +1,13 @@ +#include <fcntl.h> + +struct flock { + short l_type; + short l_whence; + off_t l_start; + off_t l_len; + pid_t l_pid; +}; + +/* +POSIX(1) +*/ |
