git: 9front

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