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