13 lines
154 B
C
13 lines
154 B
C
|
/*
|
||
|
* fgetc - get an unsigned character and return it as an int
|
||
|
*/
|
||
|
/* $Header$ */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
fgetc(FILE *stream)
|
||
|
{
|
||
|
return getc(stream);
|
||
|
}
|