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