shithub: scc

ref: 02179049f253327e317bf4ff78597ce4723d7986
dir: /src/libc/stdio/putchar.c/

View raw version
#include <stdio.h>
#undef putchar

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