scc

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

getchar.c (79B)


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