386BSD 0.1 development
[unix-history] / usr / othersrc / public / bc-1.01 / vfprintf.c
CommitLineData
f87489ac
WJ
1#include <lib.h>
2#include <stdarg.h>
3#include <stdio.h>
4
5int vfprintf(file, format, argp)
6FILE *file;
7_CONST char *format;
8va_list argp;
9{
10 _doprintf(file, format, argp);
11 if (testflag(file, PERPRINTF)) fflush(file);
12 return 0;
13}