shithub: riscv

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