scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

fputc.c (86B)


      1 
      2 #include <stdio.h>
      3 #undef fputc
      4 
      5 int
      6 fputc(int c, FILE *fp)
      7 {
      8 	return putc(c, fp);
      9 }