xref: /openbsd/sys/dev/pci/drm/include/linux/seq_file.h (revision f005ef32)
1 /* Public domain. */
2 
3 #ifndef _LINUX_SEQ_FILE_H
4 #define _LINUX_SEQ_FILE_H
5 
6 #include <linux/bug.h>
7 #include <linux/string.h>
8 #include <linux/string_helpers.h>
9 #include <linux/fs.h>
10 
11 struct seq_file {
12 	void *private;
13 };
14 
15 static inline void
seq_printf(struct seq_file * m,const char * fmt,...)16 seq_printf(struct seq_file *m, const char *fmt, ...)
17 {
18 }
19 
20 static inline void
seq_puts(struct seq_file * m,const char * s)21 seq_puts(struct seq_file *m, const char *s)
22 {
23 }
24 
25 static inline void
seq_write(struct seq_file * m,const void * p,size_t s)26 seq_write(struct seq_file *m, const void *p, size_t s)
27 {
28 }
29 
30 #define DEFINE_SHOW_ATTRIBUTE(a)
31 
32 #endif
33