mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-27 16:15:52 +08:00
12 lines
137 B
C
12 lines
137 B
C
|
#include "libioP.h"
|
||
|
#include "stdio.h"
|
||
|
|
||
|
int
|
||
|
fputc(c, fp)
|
||
|
int c;
|
||
|
FILE *fp;
|
||
|
{
|
||
|
CHECK_FILE(fp, EOF);
|
||
|
return _IO_putc(c, fp);
|
||
|
}
|