14 lines
233 B
C
14 lines
233 B
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;
|
||
|
}
|