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