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