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