shithub: scc

ref: ae625397ab37916be884edee90fc7d37a50e8d0d
dir: /lib/c/putchar.c/

View raw version

#include <stdio.h>
#undef putchar

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