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