shithub: riscv

ref: 994977e4d0b54d087917f52f2a9fc8fdeea8aaf8
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);
}