scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

getchar.c (79B)


      1 #include <stdio.h>
      2 
      3 #undef getchar
      4 
      5 int
      6 getchar(void)
      7 {
      8 	return getc(stdin);
      9 }