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