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