blob: 0f85bc9cfcdc1e20c4bc4c0a02c12ce5478b2e09 [file] [log] [blame]
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08001#include "stdio_impl.h"
2
George Kulakowski17e3b042016-02-18 15:59:50 -08003int putc(int c, FILE* f) {
4 if (f->lock < 0 || !__lockfile(f))
5 return putc_unlocked(c, f);
6 c = putc_unlocked(c, f);
7 __unlockfile(f);
8 return c;
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08009}
10
11weak_alias(putc, _IO_putc);