shithub: plan9front

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