summaryrefslogtreecommitdiff
path: root/05/musl-0.6.0/src/stdio/ferror.c
blob: 2c591729612a946aa44234bad45bc4e21b3fe414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stdio_impl.h"

#undef ferror

int ferror(FILE *f)
{
	return !!(f->flags & F_ERR);
}

int ferror_unlocked(FILE *f)
{
	return !!(f->flags & F_ERR);
}