shithub: scc

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

View raw version
#include <stdio.h>

#undef putchar

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