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