xref: /aosp_15_r20/external/musl/src/stdio/putchar_unlocked.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "stdio_impl.h"
2 
putchar_unlocked(int c)3 int putchar_unlocked(int c)
4 {
5 	return putc_unlocked(c, stdout);
6 }
7