getchar.c 64 B

123456
  1. #include <stdio.h>
  2. int getchar(void)
  3. {
  4. return fgetc(stdin);
  5. }