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