shithub: riscv

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