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