Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / powerpc / boot / stdio.h
blobadffc58412d4afcd8cf2e25c579fc1abcfe6a689
1 #ifndef _PPC_BOOT_STDIO_H_
2 #define _PPC_BOOT_STDIO_H_
4 #include <stdarg.h>
6 #define ENOMEM 12 /* Out of Memory */
7 #define EINVAL 22 /* Invalid argument */
8 #define ENOSPC 28 /* No space left on device */
10 extern int printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
12 #define fprintf(fmt, args...) printf(args)
14 extern int sprintf(char *buf, const char *fmt, ...)
15 __attribute__((format(printf, 2, 3)));
17 extern int vsprintf(char *buf, const char *fmt, va_list args);
19 #endif /* _PPC_BOOT_STDIO_H_ */