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
forget difference between big and small commands - obsolete with vm.
[minix.git]
/
lib
/
stdio
/
ferror.c
blob
c52c84b6b695bcb279a214efc76b9f29ee309ed6
1
/*
2
* ferror .c - test if an error on a stream occurred
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
8
int
9
(
ferror
)(
FILE
*
stream
)
10
{
11
return
ferror
(
stream
);
12
}