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