mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-27 00:59:22 +08:00
6599da043e
From-SVN: r14877
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);
|
|
}
|