shithub: scc

ref: 97ee58190e3effbf4dfafdde9002b66c5593b47b
dir: /lib/c/putchar.c/

View raw version

#include <stdio.h>
#undef putchar

int
putchar(int ch)
{
	return putc(ch, stdin);
}