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