git: 9front

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