Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / stdio / fgetc.c
1 /*
2  * fgetc - get an unsigned character and return it as an int
3  */
4 /* $Id: fgetc.c,v 1.2 1994/06/24 11:48:57 ceriel Exp $ */
5
6 #include        <stdio.h>
7
8 int
9 fgetc(FILE *stream)
10 {
11         return getc(stream);
12 }