2005-08-07 23:24:38 -04:00
|
|
|
#ifndef _PPC_BOOT_STDIO_H_
|
|
|
|
#define _PPC_BOOT_STDIO_H_
|
|
|
|
|
2006-09-19 00:05:08 -04:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define ENOMEM 12 /* Out of Memory */
|
|
|
|
#define EINVAL 22 /* Invalid argument */
|
|
|
|
#define ENOSPC 28 /* No space left on device */
|
|
|
|
|
2005-08-07 23:24:38 -04:00
|
|
|
extern int printf(const char *fmt, ...);
|
|
|
|
|
2006-09-19 00:05:08 -04:00
|
|
|
#define fprintf(fmt, args...) printf(args)
|
|
|
|
|
2005-08-07 23:24:38 -04:00
|
|
|
extern int sprintf(char *buf, const char *fmt, ...);
|
|
|
|
|
|
|
|
extern int vsprintf(char *buf, const char *fmt, va_list args);
|
|
|
|
|
|
|
|
#endif /* _PPC_BOOT_STDIO_H_ */
|