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