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