blob: 29824bba30d743d260ae110d30920c506cb8e856 [file] [log] [blame]
#include "stdio_impl.h"
int fgetc(FILE* f) {
int c;
if (atomic_load(&f->lock) < 0 || !__lockfile(f))
return getc_unlocked(f);
c = getc_unlocked(f);
__unlockfile(f);
return c;
}