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