shithub: riscv

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