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