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