Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
arch
powerpc
boot
stdio.h
Go to the documentation of this file.
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
, ...)
__attribute__
((
format
(
printf
, 1, 2)));
11
12
#define fprintf(fmt, args...) printf(args)
13
14
extern
int
sprintf
(
char
*
buf
,
const
char
*fmt, ...)
15
__attribute__
((
format
(printf, 2, 3)));
16
17
extern
int
vsprintf
(
char
*buf,
const
char
*fmt,
va_list
args);
18
19
#endif
/* _PPC_BOOT_STDIO_H_ */
Generated on Thu Jan 10 2013 13:13:13 for Linux Kernel by
1.8.2