limit the configurable default stack/guard size for threads
[musl.git] / src / stdio / putc.c
blobfa8934969b62de4c4ca99172d13f95f13fc3e0a8
1 #include "stdio_impl.h"
3 int putc(int c, FILE *f)
5 if (f->lock < 0 || !__lockfile(f))
6 return putc_unlocked(c, f);
7 c = putc_unlocked(c, f);
8 __unlockfile(f);
9 return c;
12 weak_alias(putc, _IO_putc);