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

#undef getc

int
getc(stream)
  FILE *stream;
{
  return _IO_getc (stream);
}