shithub: riscv

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