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