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