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