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