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