Select the types of activity you want to include in your feed.
1#ifndef _PPC_BOOT_STDIO_H_ 2#define _PPC_BOOT_STDIO_H_ 3 4extern int printf(const char *fmt, ...); 5 6extern int sprintf(char *buf, const char *fmt, ...); 7 8extern int vsprintf(char *buf, const char *fmt, va_list args); 9 10#endif /* _PPC_BOOT_STDIO_H_ */