mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 10:59:17 +08:00
6599da043e
From-SVN: r14877
11 lines
119 B
C
11 lines
119 B
C
#include "libioP.h"
|
|
#include "stdio.h"
|
|
|
|
int
|
|
fgetc(fp)
|
|
FILE *fp;
|
|
{
|
|
CHECK_FILE(fp, EOF);
|
|
return _IO_getc(fp);
|
|
}
|