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