[PATCH] ppc64: make arch/ppc64/boot standalone
[linux-2.6/libata-dev.git] / arch / ppc64 / boot / stdio.h
blob24bd3a8dee949e18f019270553ce86963c036740
1 #ifndef _PPC_BOOT_STDIO_H_
2 #define _PPC_BOOT_STDIO_H_
4 extern int printf(const char *fmt, ...);
6 extern int sprintf(char *buf, const char *fmt, ...);
8 extern int vsprintf(char *buf, const char *fmt, va_list args);
10 extern int putc(int c, void *f);
11 extern int putchar(int c);
12 extern int getchar(void);
14 extern int fputs(char *str, void *f);
16 #endif /* _PPC_BOOT_STDIO_H_ */