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