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