repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isblank() implementation.
[minix.git]
/
lib
/
libc
/
stdio
/
getchar.c
blob
759bf60bc9b250e9a8c6b9ac6e6ec04dd86e0f0f
1
/*
2
* getchar.c - read a character from the standard input stream
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
8
int
9
(
getchar
)(
void
)
10
{
11
return
getchar
();
12
}