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