14 lines
		
	
	
		
			231 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			231 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/*
 | 
						|
 * setbuf.c - control buffering of a stream
 | 
						|
 */
 | 
						|
/* $Header$ */
 | 
						|
 | 
						|
#include	<stdio.h>
 | 
						|
#include	"loc_incl.h"
 | 
						|
 | 
						|
void
 | 
						|
setbuf(register FILE *stream, char *buf)
 | 
						|
{
 | 
						|
	(void) setvbuf(stream, buf, (buf ? _IOFBF : _IONBF), (size_t) BUFSIZ);
 | 
						|
}
 |