]> granicus.if.org Git - strace/blob - f_owner_ex.h
tests: implement ioctl_evdev-success-v.test via ioctl_evdev-success.test
[strace] / f_owner_ex.h
1 /*
2  * Copyright (c) 2018 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #ifndef STRACE_F_OWNER_EX_H
9 # define STRACE_F_OWNER_EX_H
10
11 # include <linux/fcntl.h>
12
13 # if defined HAVE_STRUCT_F_OWNER_EX
14 typedef struct f_owner_ex struct_kernel_f_owner_ex;
15 # elif defined HAVE_STRUCT___KERNEL_F_OWNER_EX
16 typedef struct __kernel_f_owner_ex struct_kernel_f_owner_ex;
17 # else
18 #  error struct f_owner_ex definition not found in <linux/fcntl.h>
19 # endif
20
21 #endif /* !STRACE_F_OWNER_EX_H */