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