shithub: scc

ref: 015d343c41900f127914b3f0345353c9b0deff77
dir: /src/libc/stdio/putchar.c/

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

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