11 lines
102 B
C
11 lines
102 B
C
|
#include "libioP.h"
|
||
|
#include "stdio.h"
|
||
|
|
||
|
#undef getchar
|
||
|
|
||
|
int
|
||
|
getchar ()
|
||
|
{
|
||
|
return _IO_getc (stdin);
|
||
|
}
|