13 lines
		
	
	
		
			133 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			133 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/*
 | 
						|
 * getc.c - read an unsigned character
 | 
						|
 */
 | 
						|
/* $Header$ */
 | 
						|
 | 
						|
#include	<stdio.h>
 | 
						|
 | 
						|
int
 | 
						|
(getc)(FILE *stream)
 | 
						|
{
 | 
						|
	return getc(stream);
 | 
						|
}
 |