gcc/libio/stdio/fputc.c

12 lines
137 B
C
Raw Normal View History

1997-08-22 00:57:35 +02:00
#include "libioP.h"
#include "stdio.h"
int
fputc(c, fp)
int c;
FILE *fp;
{
CHECK_FILE(fp, EOF);
return _IO_putc(c, fp);
}