getc.c 65 B

123456
  1. #include "stdio_impl.h"
  2. int getc(FILE *f)
  3. {
  4. return fgetc(f);
  5. }