]> git.ipfire.org Git - thirdparty/gcc.git/blob - libio/stdio/fputc.c
Initial revision
[thirdparty/gcc.git] / libio / stdio / fputc.c
1 #include "libioP.h"
2 #include "stdio.h"
3
4 int
5 fputc(c, fp)
6 int c;
7 FILE *fp;
8 {
9 CHECK_FILE(fp, EOF);
10 return _IO_putc(c, fp);
11 }