git: 9front

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