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

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