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/fs.h> 9 10 struct seq_file { 11 }; 12 13 static inline void 14 seq_printf(struct seq_file *m, const char *fmt, ...) {}; 15 16 static inline void 17 seq_puts(struct seq_file *m, const char *s) {}; 18 19 #endif 20