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