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