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