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);
}