shithub: riscv

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