12 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $Header$ */
 | |
| #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);
 | |
| }
 |