shithub: front

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