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