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