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