Initial revision
This commit is contained in:
14
lang/cem/libcc.ansi/stdio/getchar.c
Normal file
14
lang/cem/libcc.ansi/stdio/getchar.c
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* getchar.c - read a character from the standard input stream
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#undef getchar
|
||||
|
||||
int
|
||||
getchar(void)
|
||||
{
|
||||
return getc(stdin);
|
||||
}
|
||||
Reference in New Issue
Block a user