shithub: riscv

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