vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

getchar.c (77B)


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