git: 9front

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