git: 9front

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