shithub: scc

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

View raw version
#include <stdio.h>

#undef putchar

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