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