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