git: 9front

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