ferror.c\stdio\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/ferror.c
blob: d692eed9418ea1f0cf36c948bacad20d6afc526c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "stdio_impl.h"
#undef ferror
int ferror(FILE *f)
{
	FLOCK(f);
	int ret = !!(f->flags & F_ERR);
	FUNLOCK(f);
	return ret;
}
weak_alias(ferror, ferror_unlocked);
weak_alias(ferror, _IO_ferror_unlocked);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 09:24:46 +0000

AltStyle によって変換されたページ (->オリジナル) /