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