8sa1-gcc/libio/stdio/fputc.c

12 lines
137 B
C
Raw Normal View History

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