shithub: riscv

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