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