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