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