xref: /openbsd/sys/dev/pci/drm/include/linux/fs.h (revision f005ef32)
1 /* Public domain. */
2 
3 #ifndef _LINUX_FS_H
4 #define _LINUX_FS_H
5 
6 #include <sys/types.h>
7 #include <sys/fcntl.h>
8 #include <sys/file.h>
9 #include <linux/capability.h>
10 #include <linux/linkage.h>
11 #include <linux/uuid.h>
12 #include <linux/pid.h>
13 #include <linux/radix-tree.h>
14 #include <linux/wait_bit.h>
15 #include <linux/err.h>
16 #include <linux/sched/signal.h>	/* via percpu-rwsem.h -> rcuwait.h */
17 #include <linux/slab.h>
18 
19 struct address_space;
20 struct seq_file;
21 
22 struct file_operations {
23 };
24 
25 #define DEFINE_SIMPLE_ATTRIBUTE(a, b, c, d)
26 
27 #endif
28