shithub: scc

ref: 3bcf1091863844fc22dbbdb70117c883c242dfdf
dir: /src/libc/stdio/putchar.c/

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

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