summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/clearerr.c
blob: 83884f12d8273abbe0bb28b1ea33dcbae8cc62c1 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

void clearerr(FILE *stream)
{
	flockfile(stream);
	clearerr_unlocked(stream);
	funlockfile(stream);
}