git: 9front

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