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