ref: 3cfa8326b878e3eacce5595f6b839b4650c61621 dir: /sys/src/ape/lib/ap/stdio/putchar.c/
/* * pANS stdio -- getchar */ #include "iolib.h" #undef putchar int putchar(int c){ return fputc(c, stdout); }