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