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