git: 9front

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