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