xref: /openbsd-src/sys/dev/pci/drm/include/linux/seq_file.h (revision c1a45aed656e7d5627c30c92421893a76f370ccb)
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 
9 struct seq_file {
10 };
11 
12 static inline void
13 seq_printf(struct seq_file *m, const char *fmt, ...) {};
14 
15 static inline void
16 seq_puts(struct seq_file *m, const char *s) {};
17 
18 #endif
19