git: 9front

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