git: 9front

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