Initial revision
This commit is contained in:
11
lang/cem/libcc/stdio/fprintf.c
Normal file
11
lang/cem/libcc/stdio/fprintf.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user