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