xref: /minix3/lib/libc/stdio/fgetc.c (revision b706112487045bc1efd01e3d4d53d9a6b04a0bca)
1 /*
2  * fgetc - get an unsigned character and return it as an int
3  */
4 /* $Header$ */
5 
6 #include	<stdio.h>
7 
8 int
9 fgetc(FILE *stream)
10 {
11 	return getc(stream);
12 }
13