fgetc.c 80 B

12345678
  1. /* $Id$ */
  2. #include <stdio.h>
  3. fgetc(f)
  4. register FILE *f;
  5. {
  6. return getc(f);
  7. }