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