386BSD 0.1 development
[unix-history] / usr / othersrc / public / bc-1.01 / vfprintf.c
#include <lib.h>
#include <stdarg.h>
#include <stdio.h>
int vfprintf(file, format, argp)
FILE *file;
_CONST char *format;
va_list argp;
{
_doprintf(file, format, argp);
if (testflag(file, PERPRINTF)) fflush(file);
return 0;
}