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