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