shithub: riscv

ref: 35d19fc6fbd7f33a36497516ac7b0bc7d516fcc0
dir: /sys/src/ape/lib/ap/stdio/putchar.c/

View raw version
/*
 * pANS stdio -- getchar
 */
#include "iolib.h"
#undef putchar
int putchar(int c){
	return fputc(c, stdout);
}