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