|
|
coherent
/*
* libc/stdio/fgetc.c
* ANSI-compliant C standard i/o library.
* fgetc()
* ANSI 4.9.7.1.
* Get character from stream.
*/
#include <stdio.h>
int
fgetc(stream) FILE *stream;
{
return getc(stream);
}
/* end of libc/stdio/fgetc.c */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.