Home
       getchar.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
       ---
       getchar.c (79B)
       ---
            1 #include <stdio.h>
            2 
            3 #undef getchar
            4 
            5 int
            6 getchar(void)
            7 {
            8         return getc(stdin);
            9 }