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