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