add TLSDESC support for 32-bit arm
[musl.git] / src / stdio / getc.c
blobb3f351d1d7e45e5f4ef9ad91c868981e6aaf1929
1 #include "stdio_impl.h"
3 int getc(FILE *f)
5 int c;
6 if (f->lock < 0 || !__lockfile(f))
7 return getc_unlocked(f);
8 c = getc_unlocked(f);
9 __unlockfile(f);
10 return c;
13 weak_alias(getc, _IO_getc);