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