12 lines
174 B
C
12 lines
174 B
C
#include <stdio.h>
|
|
|
|
fprintf (file, fmt, args)
|
|
FILE *file;
|
|
char *fmt;
|
|
int args;
|
|
{
|
|
_doprnt (fmt, &args, file);
|
|
if ( io_testflag(file,IO_PERPRINTF) )
|
|
fflush(file);
|
|
}
|