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