shithub: riscv

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