]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - arch/powerpc/boot/stdio.h
Merge branch 'intelfb-patches' of master.kernel.org:/pub/scm/linux/kernel/git/airlied...
[mirror_ubuntu-focal-kernel.git] / arch / powerpc / boot / stdio.h
1 #ifndef _PPC_BOOT_STDIO_H_
2 #define _PPC_BOOT_STDIO_H_
3
4 #include <stdarg.h>
5
6 #define ENOMEM 12 /* Out of Memory */
7 #define EINVAL 22 /* Invalid argument */
8 #define ENOSPC 28 /* No space left on device */
9
10 extern int printf(const char *fmt, ...);
11
12 #define fprintf(fmt, args...) printf(args)
13
14 extern int sprintf(char *buf, const char *fmt, ...);
15
16 extern int vsprintf(char *buf, const char *fmt, va_list args);
17
18 #endif /* _PPC_BOOT_STDIO_H_ */