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