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