blob: 33b7538d16a485bef75959028975291b7ee57bdb [file] [log] [blame]
Dmitry V. Levin6250e6c2015-10-09 01:38:07 +00001#include <linux/fcntl.h>
2
3#if defined HAVE_STRUCT_FLOCK
4typedef struct flock struct_kernel_flock;
5#elif defined HAVE_STRUCT___KERNEL_FLOCK
6typedef struct __kernel_flock struct_kernel_flock;
7#else
8# error struct flock definition not found in <linux/fcntl.h>
9#endif
10
11#if defined HAVE_STRUCT_FLOCK64
12typedef struct flock64 struct_kernel_flock64;
13#elif defined HAVE_STRUCT___KERNEL_FLOCK64
14typedef struct __kernel_flock64 struct_kernel_flock64;
15#else
16# error struct flock64 definition not found in <linux/fcntl.h>
17#endif