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