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