repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* sysdeps/unix/sysv/linux/tcdrain.c: Define tcdrain, not
[glibc.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
}