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