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