Sign in
googlers
/
maze
/
klibc
/
klibc-0.14
/
.
/
printf.c
blob: 34237592d68f95bae11f3bfc933890e5c0efbd64 [
file
] [
log
] [
blame
]
/*
* printf.c
*/
#include
<stdio.h>
#include
<stdarg.h>
#define
BUFFER_SIZE
16384
int
printf
(
const
char
*
format
,
...)
{
va_list ap
;
int
rv
;
va_start
(
ap
,
format
);
rv
=
vfprintf
(
stdout
,
format
,
ap
);
va_end
(
ap
);
return
rv
;
}