shithub: riscv

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