shithub: scc

ref: 496a51ccfcc302614f6647cc75478f5a126ff5fc
dir: /src/libc/stdio/putchar.c/

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

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