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