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