ref: a00e21fbdeea8ece9a0c86b3d5c2483fb3d998fe dir: /sys/src/libstdio/putc.c/
/* * pANS stdio -- putc */ #include "iolib.h" #undef putc int putc(int c, FILE *f){ return fputc(c, f); }