Initial revision
This commit is contained in:
12
lib/stdio/fgetc.c
Executable file
12
lib/stdio/fgetc.c
Executable file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* fgetc - get an unsigned character and return it as an int
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int
|
||||
fgetc(FILE *stream)
|
||||
{
|
||||
return getc(stream);
|
||||
}
|
||||
Reference in New Issue
Block a user