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