/* * fgetc - get an unsigned character and return it as an int */ /* $Id$ */ #include int fgetc(FILE *stream) { return getc(stream); }