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