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