shithub: scc

ref: f720bc2dfbfa81e8125ee35696f264baf161259d
dir: /src/libc/stdio/putchar.c/

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

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