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