11 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* $Header$ */
 | 
						|
#include <stdio.h>
 | 
						|
 | 
						|
printf (fmt, args)
 | 
						|
char *fmt;
 | 
						|
int args;
 | 
						|
{
 | 
						|
	_doprnt (fmt, &args, stdout);
 | 
						|
	if ( io_testflag(stdout,IO_PERPRINTF) )
 | 
						|
        	fflush(stdout);
 | 
						|
}
 |