shithub: riscv

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