shithub: riscv

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