1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Public domain. */ #ifndef _LINUX_SEQ_FILE_H #define _LINUX_SEQ_FILE_H #include <linux/bug.h> #include <linux/string.h> 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