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