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