repo.or.cz
/
glibc
/
history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Mon Feb 19 15:30:26 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
[glibc/history.git]
/
libio
/
clearerr.c
blob
ee9780bdaf5ed78d84fd72a8d25ed83e2dd3f70b
1
#include
"libioP.h"
2
#include
"stdio.h"
3
4
void
5
clearerr
(
fp
)
6
FILE
*
fp
;
7
{
8
CHECK_FILE
(
fp
,
/*nothing*/
);
9
_IO_clearerr
(
fp
);
10
}