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