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

#undef getchar

int
getchar ()
{
  return _IO_getc (stdin);
}