git: 9front

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