git: 9front

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