/* Public domain. */ #ifndef _LINUX_SEQ_FILE_H #define _LINUX_SEQ_FILE_H #include #include struct seq_file; static inline void seq_printf(struct seq_file *m, const char *fmt, ...) {}; static inline void seq_puts(struct seq_file *m, const char *s) {}; #endif