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