ack/lang/cem/libcc/stdio/fprintf.c

13 lines
189 B
C
Raw Normal View History

1987-03-31 10:45:53 +00:00
/* $Header$ */
1987-01-27 15:57:55 +00:00
#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);
}