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