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