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
/
fgetc.c
blob
e7a488326973f3a2becda23c777321652195a012
1
/*
2
* fgetc - get an unsigned character and return it as an int
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
8
int
9
fgetc
(
FILE
*
stream
)
10
{
11
return
getc
(
stream
);
12
}