shithub: riscv

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