mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 21:10:07 +00:00
11 lines
128 B
C
11 lines
128 B
C
|
#include "libioP.h"
|
||
|
#include "stdio.h"
|
||
|
|
||
|
void
|
||
|
clearerr(fp)
|
||
|
FILE* fp;
|
||
|
{
|
||
|
CHECK_FILE(fp, /*nothing*/);
|
||
|
_IO_clearerr(fp);
|
||
|
}
|