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