aboutsummaryrefslogtreecommitdiff
path: root/libio/stdio/fgetc.c
blob: cf6410a887fbfdb88e45040f5500e26f4b173516 (plain)
1
2
3
4
5
6
7
8
9
10
#include "libioP.h"
#include "stdio.h"

int
fgetc(fp)
     FILE *fp;
{
  CHECK_FILE(fp, EOF);
  return _IO_getc(fp);
}