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
11struct seq_file {
12	void *private;
13};
14
15static inline void
16seq_printf(struct seq_file *m, const char *fmt, ...)
17{
18}
19
20static inline void
21seq_puts(struct seq_file *m, const char *s)
22{
23}
24
25static inline void
26seq_write(struct seq_file *m, const void *p, size_t s)
27{
28}
29
30#define DEFINE_SHOW_ATTRIBUTE(a)
31
32#endif
33