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