1#include "stdio_impl.h"
2
3int(putc_unlocked)(int c, FILE* f) {
4    return putc_unlocked(c, f);
5}
6
7weak_alias(putc_unlocked, fputc_unlocked);
8weak_alias(putc_unlocked, _IO_putc_unlocked);
9