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