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