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_putc(struct seq_file * m,char c)21 seq_putc(struct seq_file *m, char c)
22 {
23 }
24
25 static inline void
seq_puts(struct seq_file * m,const char * s)26 seq_puts(struct seq_file *m, const char *s)
27 {
28 }
29
30 static inline void
seq_write(struct seq_file * m,const void * p,size_t s)31 seq_write(struct seq_file *m, const void *p, size_t s)
32 {
33 }
34
35 #define DEFINE_SHOW_ATTRIBUTE(a)
36
37 #endif
38