shithub: scc

ref: 39d95c720cdc1e9af291f81689208fcf599a023d
dir: /src/libc/stdio/putchar.c/

View raw version
#include <stdio.h>

#undef putchar

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