Home
       fgetc.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       fgetc.c (76B)
       ---
            1 #include <stdio.h>
            2 
            3 #undef fgetc
            4 
            5 int
            6 fgetc(FILE *fp)
            7 {
            8         return getc(fp);
            9 }