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