shithub: riscv

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