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

void clearerr_unlocked(FILE *stream)
{
	if (stream != NULL)
		stream->flags &= ~(_IO_ERR | _IO_EOF);
}