//===-- Definition of type struct flock64 ---------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_LIBC_TYPES_STRUCT_FLOCK64_H #define LLVM_LIBC_TYPES_STRUCT_FLOCK64_H #include "off64_t.h" #include "pid_t.h" #include struct flock64 { int16_t l_type; int16_t l_whence; off64_t l_start; off64_t l_len; pid_t l_pid; }; #endif // LLVM_LIBC_TYPES_STRUCT_FLOCK64_H