Sign in
gnu
/
gcc
/
refs/tags/prereleases/egcs-1.1-prerelease
/
.
/
libiberty
/
vfprintf.c
blob: ce3fdf9c474538f0ed3e594793a3698fc025694f [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<varargs.h>
#include
<ansidecl.h>
#undef
vfprintf
int
vfprintf
(
file
,
format
,
ap
)
FILE
*
file
;
const
char
*
format
;
va_list ap
;
{
return
_doprnt
(
format
,
ap
,
file
);
}