1#include "stdio_impl.h"
2
3int putchar_unlocked(int c) {
4    return putc_unlocked(c, stdout);
5}
6