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