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