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