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